Files
oil-client-wechat/pages/wallet/withdrawList.wxml
2025-12-19 11:20:59 +08:00

28 lines
999 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--pages/wallet/withdrawList.wxml-->
<view style="padding-bottom: 100rpx;" wx:if="{{listData.length>0}}">
<view class="item" wx:for="{{listData}}" >
<view class="top">
<view class="num">
<text style="font-size: 32rpx;margin:0 8rpx;">¥</text>{{item.money}}
</view>
<view class="w-status {{item.color}}">{{item.stateName}}</view>
</view>
<view class="text">{{item.label}}{{item.time || '-'}}</view>
<view class="text">提现账号:{{item.accountNo}}</view>
<view class="text-refuse" wx:if="{{item.state == 4 || item.state == 6}}">
<view class=" text text-1">拒绝原因:</view>
<view class=" text text-2">
{{item.checkDetail || '-'}}
</view>
</view>
</view>
<view class="nomore" wx:if="{{nomore}}">- 暂无更多 -</view>
</view>
<view wx:else>
<view class="emptyData">
<image class="emptyDataImg" src="{{picImg+'emptyData.png'}}" mode="aspectFill" />
<view class="emptyDataText">暂时还没有内容~</view>
</view>
</view>