解决【营销计划-C端支付宝】支付宝领取页面,连续点击领取,报服务器异常
This commit is contained in:
parent
00418eeebf
commit
0b763419de
12
alipay.html
12
alipay.html
|
@ -81,12 +81,13 @@
|
||||||
8.开通严选Pro会员后有效期即时生效,不支持退款,原属于严选Pro会员或赠礼会员的老用
|
8.开通严选Pro会员后有效期即时生效,不支持退款,原属于严选Pro会员或赠礼会员的老用
|
||||||
户直接在原剩余有效期时长上叠加,新客户则自开通日起算。
|
户直接在原剩余有效期时长上叠加,新客户则自开通日起算。
|
||||||
9.本次活动每个用户仅限参与1次,请勿重复参与。`,
|
9.本次活动每个用户仅限参与1次,请勿重复参与。`,
|
||||||
orderNumber: "zbYmmQrSsZCiIjUaXGywJUV9BJjv0QcdJW4Il8Deyrw=",
|
orderNumber: "+C8aWROaSntLqBA0RTA+X/CAKR2YYn5iGx2YQMgp0Ww==",
|
||||||
openId: "+UfCzEgd0h2Psj245UmcyHfW6QW0msZIAxO6RJBZ7Hk=",
|
openId: "+UfCzEgd0h2Psj245UmcyHfW6QW0msZIAxO6RJBZ7Hk=",
|
||||||
popboxshow: false,
|
popboxshow: false,
|
||||||
maskshow: false,
|
maskshow: false,
|
||||||
reduceInfo: {},
|
reduceInfo: {},
|
||||||
couponInfo: {}
|
couponInfo: {},
|
||||||
|
disabledBtn:false,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
@ -127,8 +128,15 @@
|
||||||
channel: "1", //立减金发放渠道,1:支付宝;2:微信小程序
|
channel: "1", //立减金发放渠道,1:支付宝;2:微信小程序
|
||||||
channel_user_id: this.openId, // "渠道用户id"
|
channel_user_id: this.openId, // "渠道用户id"
|
||||||
};
|
};
|
||||||
|
if(this.disabledBtn){
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.disabledBtn = true;
|
||||||
req.axiosPost("/voucher/grant", data)
|
req.axiosPost("/voucher/grant", data)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
|
setTimeout(()=>{
|
||||||
|
this.disabledBtn = false;
|
||||||
|
},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', '');
|
||||||
|
|
Loading…
Reference in New Issue