trial_table.html 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. <div class="control">
  2. <span class="add" ng-click="addEvaluations()">添加</span>
  3. </div>
  4. <div class="table" style="max-height:600px;">
  5. <table>
  6. <thead>
  7. <tr>
  8. <th nowrap="nowrap">报名年份</th>
  9. <th nowrap="nowrap">高中区域</th>
  10. <th nowrap="nowrap">学生数量</th>
  11. <th nowrap="nowrap">评审老师</th>
  12. <th nowrap="nowrap">分组评审结束时间</th>
  13. <th nowrap="nowrap">操作</th>
  14. </tr>
  15. </thead>
  16. <tbody ng-init="getEvaluationsData()">
  17. <tr>
  18. <td ng-show="pageData.totalCounts == 0" colspan="5" align="center">无任何数据</td>
  19. </tr>
  20. <tr ng-show="pageData.totalCounts > 0" ng-repeat="list in evaluationslists">
  21. <td>{{list.year}}</td>
  22. <td>{{list.areas}}</td>
  23. <td nowrap="nowrap">{{list.studentCount}}</td>
  24. <td>{{list.professorName}}</td>
  25. <td nowrap="nowrap">{{list.time}}</td>
  26. <td nowrap="nowrap"><a ng-click="delEvaluation(list.id)">删除</a></td>
  27. </tr>
  28. </tbody>
  29. </table>
  30. </div>
  31. <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>