Commit 87a01d40 authored by 华国豪's avatar 华国豪 🙄

1

parent 9511e486
...@@ -187,13 +187,17 @@ ...@@ -187,13 +187,17 @@
<script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.3.2.js"></script> <script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.3.2.js"></script>
<script> <script>
let param = window.location.href.split('?')[1].split("&") ? window.location.href.split('?')[1].split("&") : null;
let price = param ? param[0].split('=')[1] : 0;
let couponId = param ? param[1].split('=')[1] : 0;
let platform = param ? param[2].split('=')[2] : 0;
let buyIf = {} let buyIf = {}
if (localStorage.buyInfo) { // if (localStorage.buyInfo) {
buyIf = JSON.parse(localStorage.buyInfo) // buyIf = JSON.parse(localStorage.buyInfo)
}else { // }else {
history.go(-1) // history.go(-1)
} // }
if (buyIf.platform == 'app') { if (platform == 'app') {
move(1) move(1)
} else { } else {
move(2) move(2)
...@@ -237,10 +241,10 @@ ...@@ -237,10 +241,10 @@
return; return;
} }
var loadingFlag; var loadingFlag;
if (buyIf.platform == 'app') { if (platform == 'app') {
window.postMessage(JSON.stringify({'action': 'showHud', 'message': '抢购中...'})); window.postMessage(JSON.stringify({'action': 'showHud', 'message': '抢购中...'}));
} }
if (buyIf.platform == 'H5') { if (platform == 'H5') {
loadingFlag = layer.msg('抢购中...', {icon: 16, shade: 0.01, shadeClose: false, time: 60000}); loadingFlag = layer.msg('抢购中...', {icon: 16, shade: 0.01, shadeClose: false, time: 60000});
} }
$.ajax({ $.ajax({
...@@ -248,16 +252,16 @@ ...@@ -248,16 +252,16 @@
url: `${getApiUrl().urlJava}api/appActivity/PanicBuyingCoupon`, url: `${getApiUrl().urlJava}api/appActivity/PanicBuyingCoupon`,
contentType: "application/json", contentType: "application/json",
data: getJavaData({ data: getJavaData({
redemptionPrice: buyIf.redemptionPrice, redemptionPrice: price,
couponId: buyIf.couponId, couponId: couponId,
productName: '印象之旅-200元线路产品优惠券' productName: '印象之旅-200元线路产品优惠券'
}), }),
async: false, async: false,
success: function (res) { success: function (res) {
if (buyIf.platform == 'app') { if (platform == 'app') {
window.postMessage(JSON.stringify({'action': 'dismissHud'})); window.postMessage(JSON.stringify({'action': 'dismissHud'}));
} }
if (buyIf.platform == 'H5') { if (platform == 'H5') {
layer.close(loadingFlag); layer.close(loadingFlag);
} }
if (res.resultCode === 1) { if (res.resultCode === 1) {
...@@ -280,11 +284,11 @@ ...@@ -280,11 +284,11 @@
} }
} }
} }
if (buyIf.platform == 'app') { if (platform == 'app') {
window.postMessage(JSON.stringify(data)); window.postMessage(JSON.stringify(data));
} }
// 跳转到支付 // 跳转到支付
else if (buyIf.platform == 'xcx') { else if (platform == 'xcx') {
// window.postMessage(JSON.stringify(data)); // window.postMessage(JSON.stringify(data));
let data = {}; let data = {};
data.sOrderNo = res.data.id; data.sOrderNo = res.data.id;
...@@ -296,7 +300,7 @@ ...@@ -296,7 +300,7 @@
url: `/pages/Home/pay/pay?data=` + JSON.stringify(data), url: `/pages/Home/pay/pay?data=` + JSON.stringify(data),
}); });
}); });
} else if (buyIf.platform == 'H5') { } else if (platform == 'H5') {
let userInfo = getLocalStorage() let userInfo = getLocalStorage()
let data = {}; let data = {};
data.sOrderNo = res.data.id; data.sOrderNo = res.data.id;
...@@ -313,7 +317,7 @@ ...@@ -313,7 +317,7 @@
} else { } else {
if (buyIf.platform == 'app') { if (platform == 'app') {
window.postMessage(JSON.stringify({'action': 'showToast', 'message': res.message})); window.postMessage(JSON.stringify({'action': 'showToast', 'message': res.message}));
} else { } else {
layer.msg(res.message) layer.msg(res.message)
...@@ -325,10 +329,10 @@ ...@@ -325,10 +329,10 @@
} }
}, },
error: function (res) { error: function (res) {
console.log(buyIf.platform) console.log(platform)
if (buyIf.platform == 'app') { if (platform == 'app') {
window.postMessage(JSON.stringify({'action': 'dismissHud'})); window.postMessage(JSON.stringify({'action': 'dismissHud'}));
} else if (buyIf.platform == 'H5') { } else if (platform == 'H5') {
layer.close(loadingFlag); layer.close(loadingFlag);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment