volunteersRank1.wxml 707 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.province}}" bindtap="rank2">
      <view class='td'><text class="idNum">{{index+1}}</text></view>
      <view class='td'>{{item.province}}</view>
      <view class='td'>{{item.city_count}}市</view>
      <view class='td'>{{item.ability_point}}</view>
    </view>
  </view>
</view>