volunteersRank2.wxml 703 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}}" data-index="{{item.city}}" bindtap="rank3">
      <view class='td'><text class="idNum">{{index+1}}</text></view>
      <view class='td'>{{item.city}}</view>
      <view class='td'>{{item.district_count}}所</view>
      <view class='td'>{{item.ability_point}}</view>
    </view>
  </view>
</view>