|
@@ -162,7 +162,8 @@ export default {
|
|
|
payType: 'WECHAT'
|
|
|
})
|
|
|
.then(res => {
|
|
|
- if (res.data) {
|
|
|
+ this.orderId = res.data.orderId
|
|
|
+ if (res.data.payStatus == 'PAID') {
|
|
|
// 支付成功
|
|
|
this.getDetail(() => {
|
|
|
this.state = 2
|
|
@@ -176,7 +177,9 @@ export default {
|
|
|
})
|
|
|
.catch(res => {
|
|
|
// 等待支付
|
|
|
- if (res.message === 'USERPAYING') {
|
|
|
+ var [USERPAYING, orderId] = res.message.split('|')
|
|
|
+ if (USERPAYING === 'USERPAYING' && !!orderId) {
|
|
|
+ this.orderId = orderId
|
|
|
if (this.state == 0) {
|
|
|
this.state = 1
|
|
|
}
|