fix: 修正代码
This commit is contained in:
parent
11e9702553
commit
89a9eaebdd
44
index.html
44
index.html
|
@ -214,15 +214,12 @@
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
||||||
// 统一跳转逻辑判断
|
// 统一跳转逻辑判断
|
||||||
gotoPage(data, type) {
|
gotoPage(data, type) {
|
||||||
|
|
||||||
// 微信授权回调地址
|
// 微信授权回调地址
|
||||||
let wxauth_url = "https://openapi.1688sup.com/wechat/oauth";
|
let wxauth_url = "https://openapi.1688sup.com/wechat/oauth";
|
||||||
// 判断是否是微信打开
|
// 第一步:判断是否是 微信静默授权 是 -> 拼接回调地址
|
||||||
var ua = navigator.userAgent.toLowerCase();
|
if (data.is_have_webview_voucher) {
|
||||||
if (ua.match(/MicroMessenger/i) == "micromessenger") {
|
|
||||||
// 第二步:判断是否是包码 是 -> 走包码回调地址
|
// 第二步:判断是否是包码 是 -> 走包码回调地址
|
||||||
if (data.settlement_data && data.settlement_data.settlement_type > 0) {
|
if (data.settlement_data && data.settlement_data.settlement_type > 0) {
|
||||||
// ***包码逻辑 打开结算 2
|
// ***包码逻辑 打开结算 2
|
||||||
|
@ -238,7 +235,6 @@
|
||||||
wxauth_url = `${wxauth_url}?jump=${location.origin}/homepage.html`;
|
wxauth_url = `${wxauth_url}?jump=${location.origin}/homepage.html`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
// 第三步:不需要微信静默授权
|
// 第三步:不需要微信静默授权
|
||||||
if (data.settlement_data && data.settlement_data.settlement_type > 0) {
|
if (data.settlement_data && data.settlement_data.settlement_type > 0) {
|
||||||
|
@ -256,42 +252,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 第一步:判断是否是 微信静默授权 是 -> 拼接回调地址
|
|
||||||
// if (data.is_have_webview_voucher) {
|
|
||||||
// // 第二步:判断是否是包码 是 -> 走包码回调地址
|
|
||||||
// if (data.settlement_data && data.settlement_data.settlement_type > 0) {
|
|
||||||
// // ***包码逻辑 打开结算 2
|
|
||||||
// if (!data.settlement_data.is_settlement && data.settlement_data.settlement_type === 2) {
|
|
||||||
// settlementFun(data.token, data.settlement_data.settlement_type);
|
|
||||||
// }
|
|
||||||
// wxauth_url = `${wxauth_url}?jump=${location.origin}/packkey/bm-index.html`;
|
|
||||||
// } else {
|
|
||||||
// // 不是包码
|
|
||||||
// if (this.pageType === 4 || this.pageType === 8) {
|
|
||||||
// wxauth_url = `${wxauth_url}?jump=${location.origin}/coupon/couponCollection.html`;
|
|
||||||
// } else {
|
|
||||||
// wxauth_url = `${wxauth_url}?jump=${location.origin}/homepage.html`;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// } else {
|
|
||||||
// // 第三步:不需要微信静默授权
|
|
||||||
// if (data.settlement_data && data.settlement_data.settlement_type > 0) {
|
|
||||||
// // ***包码逻辑 打开结算 2
|
|
||||||
// if (!data.settlement_data.is_settlement && data.settlement_data.settlement_type === 2) {
|
|
||||||
// settlementFun(data.token, data.settlement_data.settlement_type);
|
|
||||||
// }
|
|
||||||
// wxauth_url = '/packkey/bm-index.html';
|
|
||||||
// } else {
|
|
||||||
// // 不是包码
|
|
||||||
// if (this.pageType === 4 || this.pageType === 8) {
|
|
||||||
// wxauth_url = '/coupon/couponCollection.html';
|
|
||||||
// } else {
|
|
||||||
// wxauth_url = '/homepage.html';
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// 第四步:是否需要记录 当前页面
|
// 第四步:是否需要记录 当前页面
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
if (type) {
|
if (type) {
|
||||||
|
|
25
reduce.html
25
reduce.html
|
@ -234,21 +234,26 @@
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
sessionStorage.setItem("lastid", self.goodInfo.product_id);
|
sessionStorage.setItem("lastid", self.goodInfo.product_id);
|
||||||
this.orderId = res.data.order_number;
|
this.orderId = res.data.order_number;
|
||||||
|
|
||||||
let ua = navigator.userAgent.toLowerCase(); //判断用户打开链接环境
|
let ua = navigator.userAgent.toLowerCase(); //判断用户打开链接环境
|
||||||
// 第一步:如果是微信
|
if (self.plaflam == 1) {
|
||||||
if (ua.match(/MicroMessenger/i) == "micromessenger") {
|
//支付宝-微信环境中不能唤起支付宝
|
||||||
|
self.toLinkAlipay();
|
||||||
|
}
|
||||||
|
if (self.plaflam == 2) {
|
||||||
|
//微信
|
||||||
|
// if (ua.indexOf("dingtalk") > -1) {
|
||||||
|
// //在钉钉内置环境打开,不能唤起微信小程序
|
||||||
|
// self.openErrorDialog("请在其他浏览器打开!");
|
||||||
|
// } else {
|
||||||
|
if (this.goodInfo.entity.is_webview == 1) {
|
||||||
this.publicCollection(res.data.order_number);
|
this.publicCollection(res.data.order_number);
|
||||||
return
|
} else {
|
||||||
|
//唤起微信福利官小程序
|
||||||
|
window.location.replace(res.data.redirect_url);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 如果是支付宝
|
// }
|
||||||
if (ua.match(/Alipay/i) == "alipay") {
|
|
||||||
self.toLinkAlipay();
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
// 其它方式 唤起微信福利官小程序
|
|
||||||
window.location.replace(res.data.redirect_url);
|
|
||||||
} else {
|
} else {
|
||||||
self.openErrorDialog(res.message);
|
self.openErrorDialog(res.message);
|
||||||
if (res.code == 403) {
|
if (res.code == 403) {
|
||||||
|
|
Loading…
Reference in New Issue