From 56b70cdad0a96691eaf37e04a79ef5e92b892480 Mon Sep 17 00:00:00 2001
From: yiming <m13691596795@163.com>
Date: 星期五, 19 四月 2024 11:14:40 +0800
Subject: [PATCH] bug1

---
 pages/cart/paymentPage/index.js |   77 ++++++++++++++++++++++----------------
 1 files changed, 45 insertions(+), 32 deletions(-)

diff --git a/pages/cart/paymentPage/index.js b/pages/cart/paymentPage/index.js
index ef5df32..1e853ee 100644
--- a/pages/cart/paymentPage/index.js
+++ b/pages/cart/paymentPage/index.js
@@ -1,5 +1,6 @@
 // pages/cart/paymentPage/index.js
 import Toast from 'tdesign-miniprogram/toast/index';
+
 const app = getApp()
 import {
   getPublicImage
@@ -153,6 +154,7 @@
       }
     }
     app.MG.store.getUserOrderList(data).then((res) => {
+
       res.datas.forEach((item) => {
         this.data.myOrderOrderNumber.push(item.saleMethodLinks[0].orderSaleMethod.id)
         console.log(this.data.myOrderOrderNumber);
@@ -184,38 +186,49 @@
           // 鐢ㄦ埛鏈粦瀹氬井淇� 鎶�500
           app.MG.store.makeWeChatPay(resOrderNum).then(payRes => {
             console.log(payRes, 'payRes');
-            const payVal = JSON.parse(payRes);
-            console.log(payVal);
-            wx.requestPayment({
-              "appId": payVal.appId,
-              "timeStamp": payVal.timeStamp,
-              "nonceStr": payVal.nonceStr,
-              "package": payVal.package,
-              "signType": payVal.signType,
-              "paySign": payVal.paySign,
-              success: function (res) {
-                console.log('鏀粯鎴愬姛');
-                if (res.errMsg == 'requestPayment:ok') {
-                  that.setData({
-                    isPaySuccess: true
-                  })
+            if (payRes) {
+              const payVal = JSON.parse(payRes);
+              console.log(payVal);
+              wx.requestPayment({
+                "appId": payVal.appId,
+                "timeStamp": payVal.timeStamp,
+                "nonceStr": payVal.nonceStr,
+                "package": payVal.package,
+                "signType": payVal.signType,
+                "paySign": payVal.paySign,
+                success: function (res) {
+                  console.log('鏀粯鎴愬姛');
+                  if (res.errMsg == 'requestPayment:ok') {
+                    that.setData({
+                      isPaySuccess: true
+                    })
+                  }
+                },
+                fail: function (res) {
+                  console.log('鏀粯澶辫触');
+                },
+                // 鏃犺鏀粯鎴愬姛澶辫触閮戒細璋冪敤
+                "complete": function (res) {
+                  if (res.errMsg == 'requestPayment:ok') {
+                    that.setData({
+                      isPayComplete: true
+                    })
+                  }
+                  if (that.data.isPaySuccess && that.data.isPayComplete) {
+                    that.navToBack()
+                  }
                 }
-              },
-              fail: function (res) {
-                console.log('鏀粯澶辫触');
-              },
-              // 鏃犺鏀粯鎴愬姛澶辫触閮戒細璋冪敤
-              "complete": function (res) {
-                if (res.errMsg == 'requestPayment:ok') {
-                  that.setData({
-                    isPayComplete: true
-                  })
-                }
-                if (that.data.isPaySuccess && that.data.isPayComplete) {
-                  that.navToBack()
-                }
-              }
-            });
+              });
+            } else {
+              Toast({
+                context: this,
+                selector: '#t-toast',
+                message: '鏀粯澶辫触',
+                theme: 'warning',
+                direction: 'column',
+              });
+            }
+
           })
         }
       })
@@ -224,7 +237,7 @@
   },
   // 椤甸潰杩斿洖
   navToBack() {
-
+    this.getOrderByOrderNumData()
     // 杩斿洖
     wx.navigateBack()
   },

--
Gitblit v1.9.1