fix(examination): fixed examination uses list index number

This commit is contained in:
OldHawk
2018-02-02 15:54:09 +08:00
parent 6353363c69
commit c6de15963c

View File

@@ -91,7 +91,7 @@
</td>
</tr>
<tr class="ranking-list-info" ng-repeat="user in vm.pagedItems">
<td class="td-v-middle text-center">{{$index + 1}}</td>
<td class="td-v-middle text-center">{{(vm.currentPage-1) * vm.itemsPerPage + $index + 1}}</td>
<td class="td-v-middle text-center"><img class="ranking-user-img" title="{{user.displayName}}"
ng-src="{{user.profileImageURL}}">
</td>