Merge branch 'packet_key' of https://codeup.aliyun.com/5f9118049cffa29cfdd3be1c/marketing/mobileclient into packet_key
This commit is contained in:
commit
ae211d451e
|
@ -132,7 +132,7 @@
|
|||
if (linkId.length > 10) {
|
||||
req.axiosGet('/plan/plan_theme/' + linkId).then(res => {
|
||||
if (res.code == 200) {
|
||||
window.location.replace(res.data);
|
||||
locationReplace(res.data);
|
||||
self.loading = false;
|
||||
return;
|
||||
} else {
|
||||
|
|
|
@ -247,7 +247,7 @@
|
|||
|
||||
//刷新页面
|
||||
successchangeBtnFn() {
|
||||
window.location.replace(document.referrer);
|
||||
locationReplace(document.referrer);
|
||||
},
|
||||
|
||||
//兑换商品
|
||||
|
|
|
@ -157,7 +157,7 @@
|
|||
toPage() {
|
||||
let entryLink = localStorage.getItem("entryLink");
|
||||
setTimeout(() => {
|
||||
window.location.replace(entryLink);
|
||||
locationReplace(entryLink);
|
||||
}, 3 * 1000);
|
||||
},
|
||||
|
||||
|
@ -241,7 +241,7 @@
|
|||
});
|
||||
} else {
|
||||
//唤起支付宝
|
||||
window.location.replace(link);
|
||||
locationReplace(link);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -234,7 +234,7 @@
|
|||
// self.openErrorDialog("请在其他浏览器打开!");
|
||||
// } else {
|
||||
//唤起微信福利官小程序
|
||||
window.location.replace(res.data.redirect_url);
|
||||
locationReplace(res.data.redirect_url);
|
||||
// }
|
||||
}
|
||||
} else {
|
||||
|
@ -269,7 +269,7 @@
|
|||
this.maskshow = true;
|
||||
} else {
|
||||
//唤起支付宝
|
||||
window.location.replace(link);
|
||||
locationReplace(link);
|
||||
}
|
||||
},
|
||||
//错误弹出框关闭
|
||||
|
|
Loading…
Reference in New Issue