沙盘演示系统应用的微信小程序
zuoxiao
2024-11-04 753ccc61382b674ee4f7a907d03470bfc377fc39
pages/rechargeMoney/rechargMoney.js
@@ -39,7 +39,8 @@
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady() {
    this.getRechargList()
    this.getRechargList();
    this. getMorneyList();
  },
  /**
@@ -104,7 +105,7 @@
    const data = {
      sessionId: getApp().globalData.sessionId,
      vcId: this.data.vcId, //虚拟卡ID
      rechargeAmount: this.data.moneyList[this.data.activeIndex]//(单位是分)
      rechargeAmount: this.data.moneyList[this.data.activeIndex].rechargeAmount//(单位是分)
    };
    console.log("postCloseValaue" + data);
    post({
@@ -218,10 +219,16 @@
      url: 'wx/virtual_card/gerRechargeProfiles'
    };
    get(params).then(data => {
      this.setData({
        moneyList:  data.content ,
      const updatedList=   data.content.map(item=>{
        let money=item.rechargeAmount/100;
        return {
          ...item,
          money
        };
      })
      this.updateDisplayText();
      this.setData({
        moneyList: updatedList ,
      })
    }).catch(err => {
      // 错误回调
      wx.showToast({