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

1

parent 9511e486
......@@ -187,13 +187,17 @@
<script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.3.2.js"></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 = {}
if (localStorage.buyInfo) {
buyIf = JSON.parse(localStorage.buyInfo)
}else {
history.go(-1)
}
if (buyIf.platform == 'app') {
// if (localStorage.buyInfo) {
// buyIf = JSON.parse(localStorage.buyInfo)
// }else {
// history.go(-1)
// }
if (platform == 'app') {
move(1)
} else {
move(2)
......@@ -237,10 +241,10 @@
return;
}
var loadingFlag;
if (buyIf.platform == 'app') {
if (platform == 'app') {
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});
}
$.ajax({
......@@ -248,16 +252,16 @@
url: `${getApiUrl().urlJava}api/appActivity/PanicBuyingCoupon`,
contentType: "application/json",
data: getJavaData({
redemptionPrice: buyIf.redemptionPrice,
couponId: buyIf.couponId,
redemptionPrice: price,
couponId: couponId,
productName: '印象之旅-200元线路产品优惠券'
}),
async: false,
success: function (res) {
if (buyIf.platform == 'app') {
if (platform == 'app') {
window.postMessage(JSON.stringify({'action': 'dismissHud'}));
}
if (buyIf.platform == 'H5') {
if (platform == 'H5') {
layer.close(loadingFlag);
}
if (res.resultCode === 1) {
......@@ -280,11 +284,11 @@
}
}
}
if (buyIf.platform == 'app') {
if (platform == 'app') {
window.postMessage(JSON.stringify(data));
}
// 跳转到支付
else if (buyIf.platform == 'xcx') {
else if (platform == 'xcx') {
// window.postMessage(JSON.stringify(data));
let data = {};
data.sOrderNo = res.data.id;
......@@ -296,7 +300,7 @@
url: `/pages/Home/pay/pay?data=` + JSON.stringify(data),
});
});
} else if (buyIf.platform == 'H5') {
} else if (platform == 'H5') {
let userInfo = getLocalStorage()
let data = {};
data.sOrderNo = res.data.id;
......@@ -313,7 +317,7 @@
} else {
if (buyIf.platform == 'app') {
if (platform == 'app') {
window.postMessage(JSON.stringify({'action': 'showToast', 'message': res.message}));
} else {
layer.msg(res.message)
......@@ -325,10 +329,10 @@
}
},
error: function (res) {
console.log(buyIf.platform)
if (buyIf.platform == 'app') {
console.log(platform)
if (platform == 'app') {
window.postMessage(JSON.stringify({'action': 'dismissHud'}));
} else if (buyIf.platform == 'H5') {
} else if (platform == 'H5') {
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