纸通宝小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

24 lines
1.2 KiB

<!--pages/withdrawal/index/index.wxml-->
<wxs module="formate" src="../../../pages/formate.wxs"></wxs>
<cu-custom bgColor="bg-white" isBack="{{true}}">
<view slot="content">提现记录</view>
</cu-custom>
<view class="list-empty" wx:if="{{!taskList.length}}" style="height:{{height}}rpx">
<image class="img-empty" src="/assets/image/list_empty.png"></image>
<view class="text-empty">暂无数据</view>
</view>
<scroll-view wx:else scroll-y style="height: {{height}}rpx;" class="nav margin-top-sm" bindscrolltolower="fetchList">
<view wx:for-item="pageItem" wx:for-index="pageIndex" wx:for="{{taskList}}" wx:key="pageIndex">
<view class="bg-white padding" style="margin-bottom:18rpx" bindtap="lookItem" wx:for="{{pageItem}}" wx:key="index" id="{{item.id}}">
<view class="flex flex-justify">
<view class="text-sm text-black text-bold">{{formate.formateMoney(item.money)}}元</view>
<view>
<text wx:if="{{item.status==0}}" class="ft-right text-yellow text-sm">正在处理</text>
<text wx:if="{{item.status==1}}" class="ft-right text-blue text-sm">提现成功</text>
<text wx:if="{{item.status==2}}" class="ft-right text-black text-sm">提现失败</text>
</view>
</view>
</view>
</view>
</scroll-view>