achieve.wxml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <view class='history-table-wrap'>
  2. <view class="ranking" wx:for="{{ranking}}" wx:for-item="t" wx:key="team_id">
  3. <view class="name">{{t.team_name}}</view>
  4. <view class="view_1">
  5. <view class="tr">
  6. <view class="th th1"></view>
  7. <view class="th th1" wx:for="{{raceList[index].playerList}}" wx:for-item="player" wx:key="player_id">{{player.player_name}}</view>
  8. </view>
  9. <view class="tr" wx:for="{{raceList[index].scoreList}}" wx:for-item="i">
  10. <view class="td td1" wx:for="{{i}}" wx:for-item="ii">{{ii}}</view>
  11. </view>
  12. </view>
  13. <view class="table">
  14. <view class="tr">
  15. <view class="th th1">排名</view>
  16. <view class="th th2">选手</view>
  17. <view class="th th3">胜场</view>
  18. <view class="th th3">净胜球</view>
  19. </view>
  20. <view class="tr" wx:for="{{t.list}}" wx:for-item="tp" wx:key="player_id">
  21. <view class="td td1">{{index+1}}</view>
  22. <view class="td td2">{{tp.player_name}}</view>
  23. <view class="td td3">{{tp.win}}</view>
  24. <view class="td td3">{{tp.goalDifference}}</view>
  25. </view>
  26. </view>
  27. </view>
  28. <!-- <view class="table">
  29. <view class="tr">
  30. <view class="th th1">日期</view>
  31. <view class="th th2">时间</view>
  32. <view class="th th3">伤害</view>
  33. <view class="th th3">伤害</view>
  34. <view class="th th3">伤害</view>
  35. <view class="th th3">伤害</view>
  36. </view>
  37. <view class="tr" wx:for="{{15}}">
  38. <view class="td td1">2018/02/12</view>
  39. <view class="td td2">11:30</view>
  40. <view class="td td3">本次对海煞造成了100000点伤害</view>
  41. </view>
  42. </view> -->
  43. </view>