fix:支付宝立减金领取,弹出提示

This commit is contained in:
Apple 2022-10-13 15:16:02 +08:00
parent 6f189fc737
commit 9d72d445ca
1 changed files with 12 additions and 12 deletions

View File

@ -92,15 +92,15 @@
}, },
created() { created() {
//唤起支付宝授权,打开领取 //唤起支付宝授权,打开领取
// this.openId = this.getQueryString( this.openId = this.getQueryString(
// window.location.search, window.location.search,
// "alipayuserid" "alipayuserid"
// ); );
let orderNumber = this.getQueryString( let orderNumber = this.getQueryString(
window.location.search, window.location.search,
"orderNumber" "orderNumber"
); );
// this.orderNumber=orderNumber; this.orderNumber=orderNumber;
this.getOrderDetail(this.orderNumber); this.getOrderDetail(this.orderNumber);
}, },
methods: { methods: {
@ -137,13 +137,13 @@
setTimeout(()=>{ setTimeout(()=>{
this.disabledBtn = false; this.disabledBtn = false;
},2000) },2000)
// if (res.code == 200) { if (res.code == 200) {
// window.location.href = './advise.html' window.location.href = './advise.html'
// sessionStorage.setItem('messageTip', ''); sessionStorage.setItem('messageTip', '');
// } else { } else {
// window.location.href = './advise.html' window.location.href = './advise.html'
// sessionStorage.setItem('messageTip', res.message); sessionStorage.setItem('messageTip', res.message);
// } }
}) })
.catch((err) => {}); .catch((err) => {});
}, },