Browse Source

feature:提现添加手续费展示

feature-1.1-dev
Penny 3 years ago
parent
commit
5ee2ea9f4e
  1. 6
      pages-userInfo/withdraw/withdrawDetail.vue

6
pages-userInfo/withdraw/withdrawDetail.vue

@ -12,9 +12,13 @@
<text>{{withdrawDetailInfo.accountNo || ''}}</text> <text>{{withdrawDetailInfo.accountNo || ''}}</text>
</view> </view>
<view class="box"> <view class="box">
<text class="title">提现金额:</text> <text class="title">提现金额:</text>
<MoneyView :character="'¥'" :size="26" :value="withdrawDetailInfo.amt || 0" :color="'#0b6375'"/> <MoneyView :character="'¥'" :size="26" :value="withdrawDetailInfo.amt || 0" :color="'#0b6375'"/>
</view> </view>
<view class="box">
<text class="title">手续费:</text>
<MoneyView :character="'¥'" :size="26" :value="withdrawDetailInfo.fee || 0" :color="'#ff0000'"/>
</view>
<view class="box"> <view class="box">
<text class="title">渠道:</text> <text class="title">渠道:</text>
<text>{{ setChannel(withdrawDetailInfo.channel) || ''}}</text> <text>{{ setChannel(withdrawDetailInfo.channel) || ''}}</text>

Loading…
Cancel
Save