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.

35 line
1.7 KiB

  1. <view class="Box">
  2. <view class="navigationBox">
  3. <view class="textBox">
  4. <view class="{{indexFlag==item.value?'item_a':'item'}}" wx:for="{{navigationLsit}}" bindtap="setIndex" data-index="{{item.value}}">{{item.name}} </view>
  5. </view>
  6. <image class="screen" src="https://formall.oss-accelerate.aliyuncs.com/cimg/saixuan.png" bindtap="showScreen"></image>
  7. </view>
  8. <view class="noData" wx:if="{{list.length==0}}">
  9. <view class="noDataBox">
  10. <image class="onDataImg" src="../../static/images/jiaoyi.png"></image>
  11. <text class="text">暂无数据</text>
  12. </view>
  13. </view>
  14. <view class="detailsBox" wx:for="{{list}}">
  15. <view class="withdrawTitleBox">
  16. <view class="title">提现金额:</view>
  17. <view class="orange" wx:if="{{item.status==0}}">发起提现</view>
  18. <view class="status" wx:if="{{item.status==1}}">提现成功</view>
  19. <view class="red" wx:if="{{item.status==2}}">提现失败,待退回余额</view>
  20. <view class="purple" wx:if="{{item.status==3}}">提现拒绝</view>
  21. <view class="blue" wx:if="{{item.status==4}}">审批中</view>
  22. <view class="orange" wx:if="{{item.status==5}}">审批通过,待到账</view>
  23. <view class="red" wx:if="{{item.status==6}}">提现失败,已回退余额</view>
  24. </view>
  25. <view class="money">¥{{item.totalFee/100}}</view>
  26. <view class="schedule">{{item.createDate}}</view>
  27. <view class="goXq" bindtap="goXq" data-item="{{item}}">查看详情</view>
  28. </view>
  29. </view>
  30. <view class="drawerBox {{extraClasses}}" bindtap="showScreen">
  31. <view class="rightBox">
  32. <view class=" {{tiemIndex==index?'time_a':'tiem'}}" wx:for="{{tiemLsit}}" bindtap="setTiemIndex" data-index="{{index}}">{{item}}</view>
  33. </view>
  34. </view>