123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <div ng-include="'tpl/header.html'"></div>
- <div class="" layout style="padding-top:60px;">
- <div class="ui_mainbox">
- <div class="content1">
- <div style="margin-bottom: 5px;">
- <button ng-click="goLastInprogressTask()">查看最后一个进行中的任务</button>
- <button ng-click="goNextUnStartTask()">查看下一个未开始的任务</button>
-
-
-
- <!--
- <button ng-click="confirmAndSubmitAllTask(12)">确认并提交所有12页面任务</button>
- <button ng-click="confirmAndSubmitAllFuheTask()">确认并提交所有复核任务</button>
- <button ng-click="confirmAndSubmitAllTask(11)">确认并提交所有11页面任务</button>
- <button ng-click="confirmAndRemoveAllTask()">所有任务已复核,评审无误</button>
- -->
- 输入学生编号:
- <input ng-model="studentId" type = "number" />
- <button ng-click="goTaskByStudentId()">前往任务</button>
-
- </div>
- <div class="table" style="max-height:896px;">
- <table ng-if="userType == '1' || userType == '2'">
- <thead>
- <tr>
- <th width="15%">学生数量</th>
- <th width="15%">已完成数量</th>
- <th width="15%">未完成数量</th>
- <th width="25%">任务完成剩余时间(天)</th>
- <th width="15%">操作</th>
- </tr>
- </thead>
- <tbody ng-init="getReviewTasksData()">
- <tr>
- <td ng-show="pageData.totalCounts == 0" colspan="6" align="center">无任何数据</td>
- </tr>
- <tr ng-show="pageData.totalCounts > 0" ng-repeat="list in reviewtaskslists">
- <td>{{list.studentCount}}</td>
- <td>{{list.finishedCount}} <a ui-sref="finishedList">查看</a></td>
- <td>{{list.notFinishedCount}}</td>
- <td>{{list.restTime}}</td>
- <td><a ui-sref="markstep.step1" ng-if="list.notFinishedCount != 0 && list.restTime >= 0">进入评审</a></td>
- </tr>
- </tbody>
- </table>
- <table ng-if="userType == '3'">
- <thead>
- <tr>
- <th width="20%">学生姓名</th>
- <th width="25%">评审专家姓名</th>
- <!--
- <th width="20%">评审专家评审分数</th>
- <th>评分差距(分)</th>
- <th>自己打分</th>
- -->
- <th>任务完成状态</th>
- <th width="15%">操作</th>
- </tr>
- </thead>
- <tbody ng-init="getEvalStudentZCTasks()">
- <tr>
- <td ng-show="pageData.totalCounts == 0" colspan="6" align="center">无任何数据</td>
- </tr>
- <tr ng-show="pageData.totalCounts > 0" ng-repeat="list in reviewtaskslists">
- <td>{{list.name}}</td>
- <td>{{list.executors}}</td>
- <!--
- <td>{{list.scores}}</td>
- <td>{{list.disparity | number:1}}</td>
- <td>{{list.totalScore}}</td>
- -->
- <td>{{list.status == '0'?'未开始':(list.status == '1'?'未完成':'已完成')}}</td>
- <td><a ui-sref="markstep.step1({'taskId':list.taskId})" ng-if="list.status != 2">进入评审</a>
- <a href="javascript:;" ng-click="lookCalibrationDetail(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>
- </div>
- </div>
- </div>
- <div class="pop_calibrationDetail" id="popCalibrationDetail_picketage_table">
- <table class="scoreTbl">
- <thead>
- <tr>
- <th>类型</th>
- <th>老师</th>
- <th ng-repeat="s in totalPingfenModules" style="text-align: right;">{{s}}</th>
- <th style="text-align: right;">总分</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" style="text-align: center;">{{mark.typeName}}</td>
- <td nowrap="nowrap" style="text-align: center;">{{mark.teacherName}}</td>
- <td ng-repeat="sco in mark.scoreArr" style="text-align: right;">{{sco.score| number:2}} <div ng-if="sco.creater">{{sco.creater}}</div></td>
- <td style="text-align: right;">{{mark.totalScore| number:2}}</td>
- </tr>
- </tbody>
- </table>
- </div>
|