zsfh.wxml 1.7 KB

12345678910111213141516171819202122232425262728293031
  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. </view>
  9. </view>
  10. <swiper bindchange="__e" class="swiper-box" current="{{tabCurrentIndex}}" data-event-opts="{{[ [ 'change',[ [ 'changeTab',['$event'] ] ] ] ]}}" duration="300" style="{{'height:'+maxheight+'px'+';'}}">
  11. <swiper-item class="tab-content" wx:for="{{navList}}" wx:for-index="tabIndex" wx:for-item="tabItem" wx:key="tabIndex">
  12. <scroll-view bindscrolltolower="__e" class="list-scroll-content" data-event-opts="{{[ [ 'scrolltolower',[ [ 'loadData',['$event'] ] ] ] ]}}" scrollY="{{true}}">
  13. <empty bind:__l="__l" vueId="{{'6f223764-1-'+tabIndex}}" wx:if="{{tabItem.loaded===true&&tabItem.orderList.length===0}}"></empty>
  14. <view class="order-item flex" wx:for="{{tabItem.orderList}}" wx:key="index">
  15. <view class="title-box">
  16. <view class="title">
  17. <text>{{item.title}}</text>
  18. </view>
  19. <view class="time">
  20. <text>{{item.add_time}}</text>
  21. </view>
  22. </view>
  23. <view class="money">
  24. <text>{{(item.pm==0?'-':'+')+item.number}}</text>
  25. </view>
  26. </view>
  27. <uni-load-more bind:__l="__l" status="{{tabItem.loadingType}}" vueId="{{'6f223764-2-'+tabIndex}}"></uni-load-more>
  28. </scroll-view>
  29. </swiper-item>
  30. </swiper>
  31. </view>