teamReviewMark_table.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <div class="table">
  2. <table>
  3. <thead>
  4. <tr>
  5. <th>#</th>
  6. <th>省份</th>
  7. <th>市</th>
  8. <th>县/区</th>
  9. <th>毕业中学</th>
  10. <th>姓名</th>
  11. <th>小组评议老师</th>
  12. <th>小组评议分数</th>
  13. <th>状态</th>
  14. <th>小组评议意见</th>
  15. <th>操作</th>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. <tr ng-repeat="item in tasks">
  20. <td>{{$index+1}}</td>
  21. <td>{{item.province_name}}</td>
  22. <td>{{item.area_name}}</td>
  23. <td>{{item.city_name}}</td>
  24. <td>{{item.school_name}}</td>
  25. <td>{{item.name}}</td>
  26. <td>{{item.teacher_name}}</td>
  27. <td>{{item.total_score}}</td>
  28. <td>{{item.status | status}}</td>
  29. <td>{{item.remark}}</td>
  30. <td><a href="javascript:;" ng-click="lookCalibrationDetail(item.student_id)">打分详情</a>
  31. <a ng-if="item.status != '2'" href="javascript:;" ng-click="reMark(list)">继续评分</a>
  32. </td>
  33. </tr>
  34. </tbody>
  35. </table>
  36. </div>
  37. <div class="pop_calibrationDetail" id="popCalibrationDetail_picketage_table">
  38. <table class="scoreTbl">
  39. <thead>
  40. <tr>
  41. <th>类型</th>
  42. <th>老师</th>
  43. <th ng-repeat="s in [1,2,3,4,5,6,7,8,9,10,11,12]">{{s}}</th>
  44. <th>总分</th>
  45. </tr>
  46. </thead>
  47. <tbody>
  48. <tr>
  49. <td ng-show="marklists.length == 0" colspan="5" align="center">无任何数据</td>
  50. </tr>
  51. <tr ng-show="marklists.length > 0" ng-repeat="mark in marklists">
  52. <td nowrap="nowrap">{{mark.typeName}}</td>
  53. <td nowrap="nowrap">{{mark.teacherName}}</td>
  54. <td ng-repeat="sco in mark.scoreArr">{{sco.score}}/{{sco.calcScore}} <div ng-if="sco.creater">{{sco.creater}}</div></td>
  55. <td>{{mark.totalScore}}/{{mark.totalCalcScore}}</td>
  56. </tr>
  57. </tbody>
  58. </table>
  59. </div>