打开体验版小程序
This commit is contained in:
parent
4f50cbbdb5
commit
c62e8b3a99
|
@ -579,7 +579,14 @@
|
||||||
}
|
}
|
||||||
upWXSmallProgramYouBank();
|
upWXSmallProgramYouBank();
|
||||||
} else {
|
} else {
|
||||||
window.location.replace(res.data.redirect_url);
|
let url;
|
||||||
|
if (res.data.redirect_url.indexOf("?") == -1) {
|
||||||
|
url = res.data.redirect_url + "?env_version=trial"
|
||||||
|
} else {
|
||||||
|
url = res.data.redirect_url + "&env_version=trial"
|
||||||
|
}
|
||||||
|
window.location.replace(url);
|
||||||
|
// window.location.replace(res.data.redirect_url);
|
||||||
}
|
}
|
||||||
this.getProductDetail();
|
this.getProductDetail();
|
||||||
}
|
}
|
||||||
|
|
|
@ -301,8 +301,15 @@
|
||||||
this.publicCollection(res.data.order_number);
|
this.publicCollection(res.data.order_number);
|
||||||
} else {
|
} else {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
|
let url;
|
||||||
|
if (res.data.redirect_url.indexOf("?") == -1) {
|
||||||
|
url = res.data.redirect_url + "?env_version=trial"
|
||||||
|
} else {
|
||||||
|
url = res.data.redirect_url + "&env_version=trial"
|
||||||
|
}
|
||||||
|
window.location.replace(url);
|
||||||
//唤起微信福利官小程序
|
//唤起微信福利官小程序
|
||||||
window.location.replace(res.data.redirect_url);
|
// window.location.replace(res.data.redirect_url);
|
||||||
}
|
}
|
||||||
|
|
||||||
// }
|
// }
|
||||||
|
|
|
@ -556,7 +556,13 @@
|
||||||
}
|
}
|
||||||
upWXSmallProgramYouBank();
|
upWXSmallProgramYouBank();
|
||||||
} else {
|
} else {
|
||||||
window.location.replace(res.data.redirect_url);
|
let url;
|
||||||
|
if (res.data.redirect_url.indexOf("?") == -1) {
|
||||||
|
url = res.data.redirect_url + "?env_version=trial"
|
||||||
|
} else {
|
||||||
|
url = res.data.redirect_url + "&env_version=trial"
|
||||||
|
}
|
||||||
|
window.location.replace(url);
|
||||||
}
|
}
|
||||||
self.timeGet = setInterval(() => {
|
self.timeGet = setInterval(() => {
|
||||||
self.getProductDetail(); //
|
self.getProductDetail(); //
|
||||||
|
|
Loading…
Reference in New Issue