37 lines
1.7 KiB
Plaintext
Executable File
37 lines
1.7 KiB
Plaintext
Executable File
<cu-custom isBack="{{true}}">
|
|
<view slot="content">提现记录</view>
|
|
</cu-custom>
|
|
|
|
<view class="page-box" wx:if="{{recordList.length>0}}">
|
|
<block wx:for="{{recordList}}" wx:key="index">
|
|
<view class="item">
|
|
<view class="content">
|
|
<view class="hint-msg">申请时间:<text style="margin-left: 15rpx;">{{item.accountWithdrawApplyTime}}</text>
|
|
</view>
|
|
<view class="hint-msg">提现金额:<text
|
|
style="font-size: 32rpx;color: #E6B980;margin-left: 15rpx;">¥{{item.accountWithdrawMoney/100}}</text>
|
|
</view>
|
|
<view wx:if="{{item.accountWithdrawCheckStatus=='0'}}">
|
|
未通过原因:<text style="color: #ff0000;">{{item.accountWithdrawCheckRemark}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="subscript">
|
|
<image src="/images/ic_hot_number_bg.png" mode="scaleToFill"></image>
|
|
<!-- 审核状态 0.未通过 1.待审核 2.已通过 -->
|
|
<block wx:if="{{item.accountWithdrawCheckStatus=='0'}}">
|
|
<view class="state" style="color: #ff0000;">未通过</view>
|
|
</block>
|
|
<block wx:elif="{{item.accountWithdrawCheckStatus=='1'}}">
|
|
<view class="state">审核中</view>
|
|
</block>
|
|
<block wx:else>
|
|
<view class="state">已通过</view>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
<van-loading wx:if="{{isLoadMore}}" size="24px">加载中...</van-loading>
|
|
</view>
|
|
<view wx:else style="margin-top:200rpx;width:100%;">
|
|
<van-empty description="暂无提现记录" />
|
|
</view> |