list.wxml 1.3 KB

123456789101112131415161718192021222324
  1. <view class="top">
  2. <text>排名</text><text style="width:25%;text-align:center;">选手</text><text>初始资产</text>
  3. <text>今日资产</text><text>总盈亏</text>
  4. </view>
  5. <scroll-view scroll-y="true" class="list" bindscrolltolower='next'>
  6. <navigator class="item" wx:for='{{list}}' url="../gameDetail/gameDetail?id={{item.match_id}}&record_id={{item.id}}">
  7. <image wx:if='{{item.group_rank==1}}' mode="widthFix" src="../images/1.png"></image>
  8. <image wx:if='{{item.group_rank==2}}' mode="widthFix" src="../images/2.png"></image>
  9. <image wx:if='{{item.group_rank==3}}' mode="widthFix" src="../images/3.png"></image>
  10. <text style="width:36rpx;text-align:center;" wx:if='{{item.group_rank>3}}'>{{item.group_rank}}</text>
  11. <text class="name">{{item.username}}</text>
  12. <text>{{item.fund}}w</text>
  13. <text>{{item.today_fund}}w</text>
  14. <text class="{{item.total_income[0]=='-'?'down':'up'}}">{{item.total_income}}</text>
  15. </navigator>
  16. <block wx:if='{{total >= 20}}'>
  17. <view class='more' wx:if='{{list.length < total}}'>上拉加载更多...</view>
  18. <!-- <view class='more' wx:else>已加载全部数据!</view> -->
  19. </block>
  20. <view>
  21. <text class="note">点击选手,查看每日持股与交割单...</text>
  22. </view>
  23. </scroll-view>