linwenxin 4 місяців тому
батько
коміт
615cc2c1ca

+ 5 - 2
src/packageMaterial/pages/newSale/pay.vue

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

+ 5 - 2
src/packageMaterial/pages/sale/pay.vue

@@ -163,7 +163,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
@@ -177,7 +178,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
             }