withdrawals_list.wxml 790 Bytes
<view class="container">
    <view class="withdrawal-box">
        <view class="withdrawal-item pay title">编号</view>
        <view class="withdrawal-item time title">申请日期</view>
        <view class="withdrawal-item price title">金额</view>
        <view class="withdrawal-item status title">状态</view>
    </view>
    <view class="withdrawal-box" wx:for="{{withdrawals}}" wx:key="{{index}}">
        <view class="withdrawal-item pay">{{item.id}}</view>
        <view class="withdrawal-item time">{{item.createTimeFommat}}</view>
        <view class="withdrawal-item price">{{item.money}}</view>
        <view class="withdrawal-item status">{{item.status==0?'申请中':''}}{{item.status==1?'申请成功':''}}{{item.status==2?'申请失败':''}}</view>
    </view>
</view>