Files
cardtest/pages/withdrawal_record/withdrawal_record.wxml
zhangmanman 540d76bdb8 [更新]
2021-08-09 15:57:37 +08:00

44 lines
1.8 KiB
Plaintext

<view class="profigOrder-module-title">
<view class="profigOrder-module-name">
提现列表
</view>
<view class="profigReport-module-picker">
<picker bindchange="screenWithdrawal" value="{{WithdrawalIndex}}" range-key="name" range="{{WithdrawalWay}}">
{{WithdrawalWay[WithdrawalIndex].name}}
</picker>
<image class="profigReport-module-icon" src="/static/icon/arrow_down.png"></image>
</view>
</view>
<view wx:if="{{accounts.length > 0}}" class="recordCont">
<view class="record-list" wx:for="{{accounts}}" wx:key="accounts">
<view class="record-top">
<view class="record-way">{{item.way}}</view>
<view class="record-take">+{{item.take}}</view>
</view>
<view class="record-cont">
<view class="record-label">
<view class="record-label-name">提现时间</view>
<view class="record-label-time">{{item.create_at}}</view>
</view>
<view class="record-label">
<view class="record-label-name">提现状态</view>
<view class="record-label-status {{item.status.status == 3 ? 'record-label-green' : ''}}">
{{item.status.status_text}}</view>
</view>
</view>
</view>
<view class="pagesLoding" wx:if="{{lodingStats}}">
<block wx:if="{{page.has_more}}">
<image class="pagesLoding-icon" src="/static/icon/refresh_loding.gif" mode="widthFix"></image>加载中...
</block>
<block wx:else>
没有更多了~
</block>
</view>
</view>
<!-- 暂无内容 -->
<view class="pack-center pages-hint" wx:else>
<image src="/static/img/legal_tips.png"></image>
<view>抱歉,目前暂无记录~</view>
</view>