index.wxml 857 B

123456789101112131415161718192021222324252627282930
  1. <view class="container">
  2. <view class="b">
  3. <view class="l"> 可提现金额:{{cash}}</view>
  4. <view class="r">
  5. <view class="btn active" bindtap="btnCashout" wx:if="{{cash>0}}">申请提现</view>
  6. </view>
  7. </view>
  8. <view class="no-order" wx:if="{{list.length <= 0}}">
  9. <view class="c">
  10. <text>还没有任何提现记录呢</text>
  11. </view>
  12. </view>
  13. <view class="orders">
  14. <view class="order" wx:for="{{list}}" wx:key="id" wx:for-item="item">
  15. <view class="h">
  16. <view class="l">提现金额:{{item.amount}}</view>
  17. <view class="r">状态:{{item.status}}</view>
  18. </view>
  19. <view class="goods">
  20. <view class="info">
  21. <text class="number">申请时间:{{item.addTime}}</text>
  22. <text class="number">备注:{{item.confirmMemo}}</text>
  23. </view>
  24. <view class="status"></view>
  25. </view>
  26. </view>
  27. </view>
  28. </view>