Browse Source

no message

featrue/v4.3
xpz2018 5 years ago
parent
commit
625f283f78
2 changed files with 4 additions and 4 deletions
  1. 4
      pages/withdrawal/balance/index.js
  2. 4
      pages/withdrawal/balance/index.wxml

4
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

4
pages/withdrawal/balance/index.wxml

@ -8,8 +8,8 @@
</view>
<view class="midArea" style="top:{{CustomBar + 10}}px">
<view class="view1">我的余额(元)</view>
<view class="view2">{{formate.numberFormat(frozenMoney)||0.00}}</view>
<view class="view3">提现中的金额:{{formate.numberFormat(accountMoney)}}</view>
<view class="view2">{{formate.numberFormat(accountMoney)||0.00}}</view>
<view class="view3">提现中的金额:{{formate.numberFormat(frozenMoney)}}</view>
<view class="view4" id="toTx" bindtap="toPage"><button class="view4Btr">提现</button></view>
</view>

Loading…
Cancel
Save