|
@@ -90,17 +90,13 @@ export default {
|
|
},
|
|
},
|
|
|
|
|
|
methods: {
|
|
methods: {
|
|
- offTiming() {
|
|
|
|
- if (this.timeout) {
|
|
|
|
- clearTimeout(this.timeout)
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
scan() {
|
|
scan() {
|
|
if (this.timeout) {
|
|
if (this.timeout) {
|
|
clearTimeout(this.timeout)
|
|
clearTimeout(this.timeout)
|
|
}
|
|
}
|
|
this.scanCode()
|
|
this.scanCode()
|
|
},
|
|
},
|
|
|
|
+
|
|
back() {
|
|
back() {
|
|
if (this.timeout) {
|
|
if (this.timeout) {
|
|
clearTimeout(this.timeout)
|
|
clearTimeout(this.timeout)
|
|
@@ -112,15 +108,11 @@ export default {
|
|
'reLaunch'
|
|
'reLaunch'
|
|
)
|
|
)
|
|
},
|
|
},
|
|
|
|
+
|
|
getDetail(cb) {
|
|
getDetail(cb) {
|
|
- let url = '',
|
|
|
|
- params = {}
|
|
|
|
- if (this.wbId) {
|
|
|
|
- url = '/engin/material/detail'
|
|
|
|
- params.id = this.orderId
|
|
|
|
- } else {
|
|
|
|
- url = '/pay/getOrder'
|
|
|
|
- params.orderId = this.orderId
|
|
|
|
|
|
+ let url = '/pay/getOrder'
|
|
|
|
+ let params = {
|
|
|
|
+ orderId: this.orderId
|
|
}
|
|
}
|
|
this.$api
|
|
this.$api
|
|
.post(url, params)
|
|
.post(url, params)
|
|
@@ -183,26 +175,55 @@ export default {
|
|
payType: 'WECHAT'
|
|
payType: 'WECHAT'
|
|
})
|
|
})
|
|
.then(res => {
|
|
.then(res => {
|
|
- if (this.state == 0) {
|
|
|
|
- this.state = 1
|
|
|
|
- }
|
|
|
|
- if (res.data == 0) {
|
|
|
|
|
|
+ if (res.data) {
|
|
|
|
+ // 支付成功
|
|
this.getDetail(() => {
|
|
this.getDetail(() => {
|
|
- this.state = 4
|
|
|
|
|
|
+ this.state = 2
|
|
})
|
|
})
|
|
- } else if (res.data == 1) {
|
|
|
|
|
|
+ } else {
|
|
|
|
+ // 支付失败
|
|
this.getDetail(() => {
|
|
this.getDetail(() => {
|
|
- this.state = 2
|
|
|
|
|
|
+ this.state = 4
|
|
})
|
|
})
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ .catch(res => {
|
|
|
|
+ // 等待支付
|
|
|
|
+ if (res.message === 'USERPAYING') {
|
|
|
|
+ if (this.state == 0) {
|
|
|
|
+ this.state = 1
|
|
|
|
+ }
|
|
|
|
+ this.getDetail__()
|
|
|
|
+ } else {
|
|
|
|
+ this.$tips(res.message)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ offTiming() {
|
|
|
|
+ if (this.timeout) {
|
|
|
|
+ clearTimeout(this.timeout)
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ getDetail__(cb) {
|
|
|
|
+ this.$api
|
|
|
|
+ .post('/pay/getOrder', {
|
|
|
|
+ orderId: this.orderId
|
|
|
|
+ })
|
|
|
|
+ .then(res => {
|
|
|
|
+ this.detail = res.data
|
|
|
|
+ if (res.data.payStatus == 'PAID') {
|
|
|
|
+ this.state = 2
|
|
} else {
|
|
} else {
|
|
this.timeout = setTimeout(() => {
|
|
this.timeout = setTimeout(() => {
|
|
- this.submitData(code)
|
|
|
|
|
|
+ this.getDetail__(cb)
|
|
}, 1000)
|
|
}, 1000)
|
|
}
|
|
}
|
|
|
|
+ cb?.()
|
|
})
|
|
})
|
|
- .catch(res => {
|
|
|
|
- this.$tips(res.message)
|
|
|
|
- })
|
|
|
|
|
|
+ .catch(res => {})
|
|
|
|
+ .finally(res => {})
|
|
},
|
|
},
|
|
|
|
|
|
confirmPay() {
|
|
confirmPay() {
|