tuan_tuanyuan.wxml 805 B

123456789101112131415161718192021222324252627
  1. <view id="main">
  2. <view class='list-myorder'>
  3. <view class='ul-product'>
  4. <view class='li' wx:for="{{list}}">
  5. <view class='pic'>
  6. <image src='{{item.avatar}}'></image>
  7. </view>
  8. <view class='text'>
  9. <view class='pro-name'>
  10. 昵称:{{item.full_user_name}}
  11. </view>
  12. <view class='pro-pric'>
  13. <text class='span'>关注时间:</text>{{item.create_time}}
  14. </view>
  15. <view class='pro-pric'>
  16. <text>推荐上级:</text>{{item.parent_name}}
  17. </view>
  18. </view>
  19. </view>
  20. <view wx:if="{{LoadingComplete}}" class="tips fl {{hidetip?'hide':''}} ">正在加载...</view>
  21. <view wx:else class="tips fl">{{tip_html}}</view>
  22. </view>
  23. </view>
  24. </view>