diff --git a/coupon/details.html b/coupon/details.html index 8cfda1f..b37c66b 100644 --- a/coupon/details.html +++ b/coupon/details.html @@ -519,7 +519,11 @@ createdPay (orderNumber) { req.axiosGet('/key/coupon/createPay/' + orderNumber).then(res => { if (res.code == 200) { - this.payWayRun(res.data); + if(res.data.pay_status){//pay_status 2已支付 + window.location.replace('http://test.86885.cn/paysuccess.html?order_number='+res.data.order_number); + }else{ + this.payWayRun(res.data); + } } else { this.openErrorDialog(res.message); }