123456789101112131415161718192021222324252627282930 |
- <view class="container">
- <view class="b">
- <view class="l"> 可提现金额:{{cash}}</view>
- <view class="r">
- <view class="btn active" bindtap="btnCashout" wx:if="{{cash>0}}">申请提现</view>
- </view>
- </view>
- <view class="no-order" wx:if="{{list.length <= 0}}">
- <view class="c">
- <text>还没有任何提现记录呢</text>
- </view>
- </view>
- <view class="orders">
- <view class="order" wx:for="{{list}}" wx:key="id" wx:for-item="item">
- <view class="h">
- <view class="l">提现金额:{{item.amount}}</view>
- <view class="r">状态:{{item.status}}</view>
- </view>
- <view class="goods">
- <view class="info">
- <text class="number">申请时间:{{item.addTime}}</text>
- <text class="number">备注:{{item.confirmMemo}}</text>
- </view>
- <view class="status"></view>
- </view>
- </view>
- </view>
- </view>
|