12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <div class="table">
- <table>
- <thead>
- <tr>
- <th>#</th>
- <th>省份</th>
- <th>市</th>
- <th>县/区</th>
- <th>毕业中学</th>
- <th>姓名</th>
- <th>小组评议老师</th>
- <th>小组评议分数</th>
- <th>状态</th>
- <th>小组评议意见</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="item in tasks">
- <td>{{$index+1}}</td>
- <td>{{item.province_name}}</td>
- <td>{{item.area_name}}</td>
- <td>{{item.city_name}}</td>
- <td>{{item.school_name}}</td>
- <td>{{item.name}}</td>
- <td>{{item.teacher_name}}</td>
- <td>{{item.total_score}}</td>
- <td>{{item.status | status}}</td>
- <td>{{item.remark}}</td>
- <td><a href="javascript:;" ng-click="lookCalibrationDetail(item.student_id)">打分详情</a>
- <a ng-if="item.status != '2'" href="javascript:;" ng-click="reMark(list)">继续评分</a>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- <div class="pop_calibrationDetail" id="popCalibrationDetail_picketage_table">
- <table class="scoreTbl">
- <thead>
- <tr>
- <th>类型</th>
- <th>老师</th>
- <th ng-repeat="s in [1,2,3,4,5,6,7,8,9,10,11,12]">{{s}}</th>
- <th>总分</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td ng-show="marklists.length == 0" colspan="5" align="center">无任何数据</td>
- </tr>
- <tr ng-show="marklists.length > 0" ng-repeat="mark in marklists">
- <td nowrap="nowrap">{{mark.typeName}}</td>
- <td nowrap="nowrap">{{mark.teacherName}}</td>
- <td ng-repeat="sco in mark.scoreArr">{{sco.score}}/{{sco.calcScore}} <div ng-if="sco.creater">{{sco.creater}}</div></td>
- <td>{{mark.totalScore}}/{{mark.totalCalcScore}}</td>
- </tr>
- </tbody>
- </table>
- </div>
|