浏览代码

no message

aXin-0810 9 月之前
父节点
当前提交
f3ca5d8df5

+ 14 - 12
src/views/auxiliaryFittings/salesManagement/components/attachmentSalesOrderDetail.vue

@@ -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
           })
       })
     },

+ 14 - 12
src/views/auxiliaryFittings/salesManagement/components/auxiliarySalesOrderDetail.vue

@@ -1134,23 +1134,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
           })
       })
     },