1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <view class='history-table-wrap'>
- <view class="ranking" wx:for="{{ranking}}" wx:for-item="t" wx:key="team_id">
- <view class="name">{{t.team_name}}</view>
- <view class="view_1">
- <view class="tr">
- <view class="th th1"></view>
- <view class="th th1" wx:for="{{raceList[index].playerList}}" wx:for-item="player" wx:key="player_id">{{player.player_name}}</view>
- </view>
- <view class="tr" wx:for="{{raceList[index].scoreList}}" wx:for-item="i">
- <view class="td td1" wx:for="{{i}}" wx:for-item="ii">{{ii}}</view>
- </view>
- </view>
- <view class="table">
- <view class="tr">
- <view class="th th1">排名</view>
- <view class="th th2">选手</view>
- <view class="th th3">胜场</view>
- <view class="th th3">净胜球</view>
- </view>
- <view class="tr" wx:for="{{t.list}}" wx:for-item="tp" wx:key="player_id">
- <view class="td td1">{{index+1}}</view>
- <view class="td td2">{{tp.player_name}}</view>
- <view class="td td3">{{tp.win}}</view>
- <view class="td td3">{{tp.goalDifference}}</view>
- </view>
- </view>
- </view>
- <!-- <view class="table">
- <view class="tr">
- <view class="th th1">日期</view>
- <view class="th th2">时间</view>
- <view class="th th3">伤害</view>
- <view class="th th3">伤害</view>
- <view class="th th3">伤害</view>
- <view class="th th3">伤害</view>
- </view>
- <view class="tr" wx:for="{{15}}">
- <view class="td td1">2018/02/12</view>
- <view class="td td2">11:30</view>
- <view class="td td3">本次对海煞造成了100000点伤害</view>
- </view>
- </view> -->
- </view>
|