|
@@ -1028,23 +1028,25 @@ export default {
|
|
|
salesId: this.formData.salesId
|
|
|
}).then(res => {
|
|
|
if (res.code == 200) {
|
|
|
- this.payCodeUrl = res.data.codeUrl
|
|
|
- this.$refs.payQRCode.innerHTML = ''
|
|
|
+ this.isPay = true
|
|
|
this.$nextTick(() => {
|
|
|
- this.payUrl = res.data.codeUrl
|
|
|
- new QRCode(this.$refs.payQRCode, {
|
|
|
- text: res.data.codeUrl,
|
|
|
- width: 200,
|
|
|
- height: 200,
|
|
|
- colorDark: '#333333', // 二维码颜色
|
|
|
- colorLight: '#ffffff', // 二维码背景色
|
|
|
- correctLevel: QRCode.CorrectLevel.L // 容错率,L/M/H
|
|
|
+ this.payCodeUrl = res.data.codeUrl
|
|
|
+ this.$refs.payQRCode.innerHTML = ''
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.payUrl = res.data.codeUrl
|
|
|
+ new QRCode(this.$refs.payQRCode, {
|
|
|
+ text: res.data.codeUrl,
|
|
|
+ width: 200,
|
|
|
+ height: 200,
|
|
|
+ colorDark: '#333333', // 二维码颜色
|
|
|
+ colorLight: '#ffffff', // 二维码背景色
|
|
|
+ correctLevel: QRCode.CorrectLevel.L // 容错率,L/M/H
|
|
|
+ })
|
|
|
+ this.checkPay()
|
|
|
})
|
|
|
- this.checkPay()
|
|
|
})
|
|
|
}
|
|
|
})
|
|
|
- this.isPay = true
|
|
|
})
|
|
|
})
|
|
|
},
|