From e0143ad80f9c78ac1eb1bd06782567ebffb67b8f Mon Sep 17 00:00:00 2001
From: zuoxiao <470321431@qq.com>
Date: 星期一, 04 十一月 2024 10:28:25 +0800
Subject: [PATCH] 充值金额从后台获取

---
 pages/rechargeMoney/rechargMoney.js |   22 +++++++++++++++++++++-
 1 files changed, 21 insertions(+), 1 deletions(-)

diff --git a/pages/rechargeMoney/rechargMoney.js b/pages/rechargeMoney/rechargMoney.js
index 873f665..497a378 100644
--- a/pages/rechargeMoney/rechargMoney.js
+++ b/pages/rechargeMoney/rechargMoney.js
@@ -23,6 +23,7 @@
     pageSize: 20, //鍏呭�艰褰曟瘡椤佃褰曟暟
     loading: false, //鏄惁姝e湪鍔犺浇
     hasMore: true,
+    moneyList:[]//鍏呭�奸噾棰�
   },
 
   /**
@@ -103,7 +104,7 @@
     const data = {
       sessionId: getApp().globalData.sessionId,
       vcId: this.data.vcId, //铏氭嫙鍗D
-      rechargeAmount: 1 //锛堝崟浣嶆槸鍒嗭級
+      rechargeAmount: this.data.moneyList[this.data.activeIndex]//锛堝崟浣嶆槸鍒嗭級
     };
     console.log("postCloseValaue" + data);
     post({
@@ -210,5 +211,24 @@
     this.setData({
       allRechargeList: updatedList
     });
+  },
+  //鑾峰彇閲戦
+  getMorneyList(){
+    const params = {
+      url: 'wx/virtual_card/gerRechargeProfiles'
+    };
+    get(params).then(data => {
+      this.setData({
+        moneyList:  data.content ,
+      })
+      this.updateDisplayText();
+    }).catch(err => {
+      // 閿欒鍥炶皟
+      wx.showToast({
+        title: err.msg,
+        icon: 'error',
+        duration: 3000
+      })
+    });
   }
 })
\ No newline at end of file

--
Gitblit v1.8.0