锶源昆仑会员+体验官
This commit is contained in:
35
pages/account/withdrawList/index.wxml
Normal file
35
pages/account/withdrawList/index.wxml
Normal file
@@ -0,0 +1,35 @@
|
||||
<view class="list" wx:if="{{logsArr.length > 0}}">
|
||||
<view class="item" wx:for="{{logsArr}}" wx:key="index">
|
||||
<view class="top">
|
||||
<view class="name">
|
||||
{{item.way}}
|
||||
</view>
|
||||
<view class="time">
|
||||
{{item.create_at}}
|
||||
</view>
|
||||
</view>
|
||||
<block wx:if="{{item.status}}">
|
||||
<view class="state {{item.status.status == 1 ? 'green' : ''}}" wx:if="{{item.status.status == 1}}">
|
||||
{{item.status.status_text}}
|
||||
</view>
|
||||
<view class="state {{item.status.status == 2 ? 'red' : ''}}" wx:else>
|
||||
{{item.status.status_text}}
|
||||
</view>
|
||||
</block>
|
||||
<view class="number">
|
||||
{{item.amount}}
|
||||
</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/imgs/record_null.png" mode="widthFix"></image>
|
||||
<view>~暂无数据哦~</view>
|
||||
</view>
|
||||
Reference in New Issue
Block a user