Browse Source

用户提现历史优化

master
yangrz 2 years ago
parent
commit
6fdced1ac4
  1. 30
      agentApp/pages/withdrawal-history/withdrawal-history.vue

30
agentApp/pages/withdrawal-history/withdrawal-history.vue

@ -2,34 +2,38 @@
<view class="app-container">
<u-gap height="10rpx" bgColor="#F7F7F7"></u-gap>
<view class="his-content">
<view class="his-item u-border-bottom" v-if="!withdrawList.length">暂无数据</view>
<view class="his-item u-border-bottom" v-for="(item,index) in withdrawList" :key="item.id">
<view class="hit-left">
<view class="his-name">
流水号: {{item.out_biz_no}}
</view>
<view class="his-state" v-if="item.status==0">
审核中
审核状态审核
</view>
<view class="his-state" v-if="item.status==1" style="color:green">
提现成功
<view class="his-state" v-if="item.status==1">
审核状态<text style="color:green">提现成功</text>
</view>
<view class="his-state" v-if="item.status==2" style="color:red">
审核不通过{{item.review_remark}}
<view class="his-state" v-if="item.status==2">
审核状态<text style="color:red">审核不通过原因{{item.review_remark}})</text>
</view>
<view class="his-time">
申请时间{{item.created_at}}
<view class="his-state">
提现金额{{item.amount}}
</view>
<view class="his-time">
审核时间{{item.reviewed_at}}
<view class="his-state">
扣手续费{{item.fee}}
</view>
<view class="his-time">
提现金额{{item.amount}}
<view class="his-state">
实际到账{{item.receive_amount}}
</view>
<view class="his-state">
提现账户{{item.alipay_account}}
</view>
<view class="his-time">
扣手续费{{item.fee}}
申请时间{{item.created_at}}
</view>
<view class="his-time">
实际到账{{item.receive_amount}}
审核时间{{item.reviewed_at}}
</view>
</view>
<!-- <view class="hit-right">

Loading…
Cancel
Save