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