award.wxml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <view class="content">
  2. <view class="content-money">
  3. <view class="money-box flex">
  4. <view>
  5. <view class="text">可提现佣金(元)</view>
  6. <view class="money">{{$root.f0}}</view>
  7. </view>
  8. <navigator url="/pages/wallet/freezeList">
  9. <view>
  10. <view class="text">冻结佣金(元)</view>
  11. <view class="money">{{$root.f1}}</view>
  12. </view>
  13. </navigator>
  14. </view>
  15. <view class="flex buttom-box">
  16. <view bindtap="__e" class="buttom" data-event-opts="{{[ [ 'tap',[ [ 'navto',['./withdrawal'] ] ] ] ]}}">
  17. <view class="icon">
  18. <image class="icon-img" mode="aspectFit" src="/static/icon/i6.png"></image>
  19. </view>
  20. <text class="font-size-sm">提现</text>
  21. </view>
  22. <view class="interval"></view>
  23. <view bindtap="__e" class="buttom" data-event-opts="{{[ [ 'tap',[ [ 'navto',['./withdmoenys'] ] ] ] ]}}">
  24. <view class="icon">
  25. <image class="icon-img" mode="aspectFit" src="/static/icon/i7.png"></image>
  26. </view>
  27. <text class="font-size-sm">转余额</text>
  28. </view>
  29. </view>
  30. </view>
  31. <view class="navbar">
  32. <view bindtap="__e" class="{{['nav-item',tabCurrentIndex===index?'current':'']}}" data-event-opts="{{[ [ 'tap',[ [ 'tabClick',[index] ] ] ] ]}}" wx:for="{{navList}}" wx:key="index">{{item.text}}</view>
  33. </view>
  34. <swiper bindchange="__e" class="swiper-box" current="{{tabCurrentIndex}}" data-event-opts="{{[ [ 'change',[ [ 'changeTab',['$event'] ] ] ] ]}}" duration="300" style="{{'height:'+maxheight+'px'+';'}}">
  35. <swiper-item class="tab-content" wx:for="{{navList}}" wx:for-index="tabIndex" wx:for-item="tabItem" wx:key="tabIndex">
  36. <scroll-view bindscrolltolower="__e" class="list-scroll-content" data-event-opts="{{[ [ 'scrolltolower',[ [ 'loadData',['$event'] ] ] ] ]}}" scrollY="{{true}}">
  37. <empty bind:__l="__l" vueId="{{'c71bb2f8-1-'+tabIndex}}" wx:if="{{tabItem.loaded===true&&tabItem.orderList.length===0}}"></empty>
  38. <view class="order-item flex" wx:for="{{tabItem.orderList}}" wx:key="index">
  39. <view class="title-box">
  40. <view class="title">
  41. <text>{{item.title}}</text>
  42. </view>
  43. <view class="time">
  44. <text>{{item.add_time}}</text>
  45. </view>
  46. </view>
  47. <view class="money">
  48. <text>{{(item.pm==0?'-':'+')+item.number}}</text>
  49. </view>
  50. </view>
  51. <uni-load-more bind:__l="__l" status="{{tabItem.loadingType}}" vueId="{{'c71bb2f8-2-'+tabIndex}}"></uni-load-more>
  52. </scroll-view>
  53. </swiper-item>
  54. </swiper>
  55. </view>