|
@@ -55,17 +55,15 @@
|
|
|
科组长:{{ kzz.loginName }},仲裁:{{ kzz.arbitrated }}
|
|
|
</div>
|
|
|
<table class="table table-dark">
|
|
|
- <colgroup>
|
|
|
- <col width="120" />
|
|
|
- <col width="310" />
|
|
|
- <col width="60" />
|
|
|
- <col width="80" />
|
|
|
- </colgroup>
|
|
|
<tr>
|
|
|
<th>评卷员</th>
|
|
|
<th>进度</th>
|
|
|
<th></th>
|
|
|
<th>打回</th>
|
|
|
+ <td v-if="IS_ROUGH_THIN_LEVEL">改大档</td>
|
|
|
+ <td v-if="IS_ROUGH_THIN_LEVEL">
|
|
|
+ 改大档打小档
|
|
|
+ </td>
|
|
|
</tr>
|
|
|
<tr v-for="(item, aindex) in group.markerProgress" :key="aindex">
|
|
|
<td>{{ item.loginName }}</td>
|
|
@@ -77,6 +75,10 @@
|
|
|
</td>
|
|
|
<td class="td-nopad">{{ item.progress }}%</td>
|
|
|
<td>{{ item.rejectedCount }}</td>
|
|
|
+ <td v-if="IS_ROUGH_THIN_LEVEL">{{ item.shiftCount }}</td>
|
|
|
+ <td v-if="IS_ROUGH_THIN_LEVEL">
|
|
|
+ {{ item.shiftScoreCount }}
|
|
|
+ </td>
|
|
|
</tr>
|
|
|
</table>
|
|
|
</div>
|
|
@@ -146,6 +148,11 @@ export default {
|
|
|
IS_SCORE() {
|
|
|
return this.curSubject.stage === "SCORE";
|
|
|
},
|
|
|
+ IS_ROUGH_THIN_LEVEL() {
|
|
|
+ return (
|
|
|
+ this.curSubject.roughLevelEnable && this.curSubject.stage === "LEVEL"
|
|
|
+ );
|
|
|
+ },
|
|
|
title() {
|
|
|
const infos = {
|
|
|
ROUGH_LEVEL: "粗分档",
|