|
@@ -11,16 +11,6 @@
|
|
|
<span v-if="curPaperOrTask.rejectedCount"
|
|
|
>共打回{{ curPaperOrTask.rejectedCount }}次</span
|
|
|
>
|
|
|
- <span
|
|
|
- v-if="
|
|
|
- !curPaperOrTask.isRejectedByLeader &&
|
|
|
- paramsSet.autoCallbackShowDeviation &&
|
|
|
- curPaperOrTask.deviationDirection
|
|
|
- "
|
|
|
- >{{
|
|
|
- curPaperOrTask.deviationDirection * 1 > 0 ? "偏高" : "偏低"
|
|
|
- }}</span
|
|
|
- >
|
|
|
</p>
|
|
|
</div>
|
|
|
<div class="action-paper-state" v-else>
|
|
@@ -65,6 +55,26 @@
|
|
|
</div>
|
|
|
<!-- 档位信息 -->
|
|
|
<!-- 已评(已评档位),打回(建议档位) -->
|
|
|
+ <h3
|
|
|
+ class="action-grade-info-title"
|
|
|
+ v-if="IS_MARKER && stepType === 'reject'"
|
|
|
+ >
|
|
|
+ <span>原分档档位:{{ curPaperOrTask.originLevel || "" }}</span>
|
|
|
+ <span
|
|
|
+ v-if="
|
|
|
+ paramsSet.autoCallbackShowDeviation &&
|
|
|
+ curPaperOrTask.deviationDirection
|
|
|
+ "
|
|
|
+ :class="[
|
|
|
+ 'grade-info-deviation',
|
|
|
+ {
|
|
|
+ 'grade-info-deviation-error':
|
|
|
+ curPaperOrTask.deviationDirection * 1 > 0
|
|
|
+ }
|
|
|
+ ]"
|
|
|
+ >{{ curPaperOrTask.deviationDirection * 1 > 0 ? "偏高" : "偏低" }}</span
|
|
|
+ >
|
|
|
+ </h3>
|
|
|
<h3 class="action-grade-info-title">
|
|
|
<span v-if="curPaperOrTask.rejected && curPaperOrTask.isRejectedByLeader"
|
|
|
>建议档位:</span
|