Browse Source

H5更新:点单0元支付的场景

panyong 3 years ago
parent
commit
569dcdc48e
1 changed files with 16 additions and 8 deletions
  1. 16 8
      htmldev/dashboard/src/views/sell/pay/index.vue

+ 16 - 8
htmldev/dashboard/src/views/sell/pay/index.vue

@@ -309,14 +309,22 @@ export default {
         const { status, msg, data } = await apiAddOrder(postData)
         this.booLock = false
         if (status) {
-          this.AFPayBridge({
-            ...data,
-            callback: () => {
-              this.selectFoods = []
-              this.placeNum = ''
-              this.$router.replace({ name: 'OrderList' })
-            }
-          })
+          // 是否需要唤起支付:0不需要直接下单成功 1需要唤起支付
+          const payStatus = data.pay_status
+          if (payStatus === 0) {
+            this.selectFoods = []
+            this.placeNum = ''
+            this.$router.replace({ name: 'OrderList' })
+          } else {
+            this.AFPayBridge({
+              ...data,
+              callback: () => {
+                this.selectFoods = []
+                this.placeNum = ''
+                this.$router.replace({ name: 'OrderList' })
+              }
+            })
+          }
         } else {
           Toast(msg)
         }