@@ -203,10 +203,14 @@ export default {
this.orderId = res.data.orderId
if (res.data.payStatus == 'PAID') {
// 支付成功
- this.state = 2
+ this.getDetail(() => {
+ this.state = 2
+ })
} else {
// 支付失败
- this.state = 4
+ this.state = 4
}
})
.catch(res => {})
@@ -204,10 +204,14 @@ export default {