From 625f283f78df95504f42cf25fc189220643e5db9 Mon Sep 17 00:00:00 2001 From: xpz2018 <107107461@qq.com> Date: Sat, 20 Mar 2021 14:17:34 +0800 Subject: [PATCH] no message --- pages/withdrawal/balance/index.js | 4 ++-- pages/withdrawal/balance/index.wxml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/withdrawal/balance/index.js b/pages/withdrawal/balance/index.js index 7d0cb9e..8803646 100644 --- a/pages/withdrawal/balance/index.js +++ b/pages/withdrawal/balance/index.js @@ -17,8 +17,8 @@ Page({ getBalanceInfo().then(result => { wx.hideLoading() this.setData({ - accountMoney: result.data.accountMoney, - frozenMoney: math.minus(result.data.accountMoney, result.data.frozenMoney), + accountMoney: math.minus(result.data.accountMoney, result.data.frozenMoney), + frozenMoney: result.data.frozenMoney, StatusBar: app.globalData.StatusBar || 40, CustomBar: app.globalData.CustomBar || (app.globalData.isIos ? 64 : 80), Custom: app.globalData.Custom diff --git a/pages/withdrawal/balance/index.wxml b/pages/withdrawal/balance/index.wxml index fd81b74..58c4a47 100644 --- a/pages/withdrawal/balance/index.wxml +++ b/pages/withdrawal/balance/index.wxml @@ -8,8 +8,8 @@ 我的余额(元) - {{formate.numberFormat(frozenMoney)||0.00}} - 提现中的金额:{{formate.numberFormat(accountMoney)}} + {{formate.numberFormat(accountMoney)||0.00}} + 提现中的金额:{{formate.numberFormat(frozenMoney)}}