myteam.wxml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <view class="content">
  2. <view class="content-money">
  3. <view class="money-box">
  4. <image class="andr-mt-avatar andr-mt-avatarBd" src="{{userInfo.avatar}}"></image>
  5. <view class="text">{{userInfo.nickname}}</view>
  6. </view>
  7. </view>
  8. <view class="navbar">
  9. <view bindtap="__e" class="{{['nav-item',tabCurrentIndex===index?'current':'']}}" data-event-opts="{{[ [ 'tap',[ [ 'tabClick',[index] ] ] ] ]}}" wx:for="{{navList}}" wx:key="index">
  10. <text>{{item.text}}</text>
  11. <text>{{item.num||''}}</text>
  12. </view>
  13. </view>
  14. <swiper bindchange="__e" class="swiper-box" current="{{tabCurrentIndex}}" data-event-opts="{{[ [ 'change',[ [ 'changeTab',['$event'] ] ] ] ]}}" duration="300" style="{{'height:'+maxheight+'rpx'+';'}}">
  15. <swiper-item class="tab-content" wx:for="{{navList}}" wx:for-index="tabIndex" wx:for-item="tabItem" wx:key="tabIndex">
  16. <scroll-view bindscrolltolower="__e" class="list-scroll-content" data-event-opts="{{[ [ 'scrolltolower',[ [ 'loadData',['$event'] ] ] ] ]}}" scrollY="{{true}}">
  17. <empty bind:__l="__l" vueId="{{'2928b722-1-'+tabIndex}}" wx:if="{{tabItem.loaded===true&&tabItem.orderList.length===0}}"></empty>
  18. <view class="andr-mt-flex andr-mt-lBox" wx:for="{{tabItem.orderList}}" wx:key="uid">
  19. <image class="andr-mt-avatar andr-mt-marR20" src="{{item.avatar}}"></image>
  20. <view class="andr-mt-flex andr-mt-fdC">
  21. <view class="andr-mt-lname flex">
  22. <view>{{item.nickname}}</view>
  23. <view class="levelBox margin-l-20 flex">
  24. <image mode=" heightFix" src="{{item.icon}}"></image>
  25. <view class="margin-l-10">{{item.name}}</view>
  26. </view>
  27. </view>
  28. <view class="andr-mt-ltime">{{item.time}}</view>
  29. </view>
  30. </view>
  31. <uni-load-more bind:__l="__l" status="{{tabItem.loadingType}}" vueId="{{'2928b722-2-'+tabIndex}}"></uni-load-more>
  32. </scroll-view>
  33. </swiper-item>
  34. </swiper>
  35. </view>