1234567891011121314151617181920212223242526272829303132 |
- <div class="control">
- <span class="add" ng-click="addEvaluations()">添加</span>
- </div>
- <div class="table" style="max-height:600px;">
- <table>
- <thead>
- <tr>
- <th nowrap="nowrap">报名年份</th>
- <th nowrap="nowrap">高中区域</th>
- <th nowrap="nowrap">学生数量</th>
- <th nowrap="nowrap">评审老师</th>
- <th nowrap="nowrap">分组评审结束时间</th>
- <th nowrap="nowrap">操作</th>
- </tr>
- </thead>
- <tbody ng-init="getEvaluationsData()">
- <tr>
- <td ng-show="pageData.totalCounts == 0" colspan="5" align="center">无任何数据</td>
- </tr>
- <tr ng-show="pageData.totalCounts > 0" ng-repeat="list in evaluationslists">
- <td>{{list.year}}</td>
- <td>{{list.areas}}</td>
- <td nowrap="nowrap">{{list.studentCount}}</td>
- <td>{{list.professorName}}</td>
- <td nowrap="nowrap">{{list.time}}</td>
- <td nowrap="nowrap"><a ng-click="delEvaluation(list.id)">删除</a></td>
- </tr>
- </tbody>
- </table>
- </div>
- <div class="page" ng-show="pageData.totalPages > 1"><span>{{pageData.totalCounts}}条记录</span><a href="javascript:;" class="first" ng-click="bmFirstPage()">首页</a><a href="javascript:;" class="prev" ng-click="bmPrevPage()">上一页</a><span>{{pageData.pageIndex}}/{{pageData.totalPages}}页</span><a href="javascript:;" class="next" ng-click="bmNextPage()">下一页</a><a href="javascript:;" class="last" ng-click="bmLastPage()">尾页</a></div>
|