Compare commits

...

3 Commits

  1. 2
      pages-userInfo/withdraw/withdraw.vue
  2. 6
      pages-userInfo/withdraw/withdrawDetail.vue
  3. 1055
      pages/index/upload/upload.vue

2
pages-userInfo/withdraw/withdraw.vue

@ -11,7 +11,7 @@
<span>当前余额为{{userInfo.amt}}</span> <span>当前余额为{{userInfo.amt}}</span>
<span class="all-withdraw" v-if="userInfo.amt > 0" @click="allWithdraw">全部提现</span> <span class="all-withdraw" v-if="userInfo.amt > 0" @click="allWithdraw">全部提现</span>
</view> </view>
<view class="withdraw-amount-tip">小贴士提现金额不少于1元 </view> <view class="withdraw-amount-tip">小贴士提现金额不少于1元,手续费为6% </view>
</view> </view>
<view class="error-message" v-if="checkFlag == true">输入金额超过或少于可提现余额</view> <view class="error-message" v-if="checkFlag == true">输入金额超过或少于可提现余额</view>

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>

1055
pages/index/upload/upload.vue

File diff suppressed because it is too large
Loading…
Cancel
Save