volunteersRank4.wxml 655 Bytes
<!--pages/volunteerRanking/volunteerRanking.wxml-->
<view class='volunteerRanking'>
  <text>志愿角色:<text>{{name}}</text></text>
  <view class='table'>
    <view class='tr'>
      <view class='th'>排名</view>
      <view class='th'>学校</view>
      <view class='th'>人数</view>
      <view class='th'>能力分</view>
    </view>
    <view wx:for="{{rankList}}" class='tr' wx:key="{{index}}">
      <view class='td'><text class="idNum">{{index+1}}</text></view>
      <view class='td'>{{item.school}}</view>
      <view class='td'>{{item.user_count}}</view>
      <view class='td'>{{item.ability_point}}</view>
    </view>
  </view>
</view>