@@ -3,6 +3,9 @@
<div v-if="markStatus" class="mark-body-status">
{{ markStatus }}
</div>
+ <div v-if="store.currentTask?.paperType" class="mark-body-papertype">
+ {{ store.currentTask?.paperType }}卷
+ </div>
<div ref="dragContainer" class="mark-body-container">
<div v-if="!store.currentTask" class="mark-body-none">
<div>
@@ -910,6 +910,25 @@
z-index: 1000;
}
+ &-papertype {
+ position: absolute;
+ width: 50px;
+ height: 50px;
+ background: #ffece8;
+ border-radius: 4px;
+ font-size: 20px;
+ font-weight: 600;
+ color: #f53f3f;
+ line-height: 50px;
+ text-align: center;
+ border-radius: 50%;
+
+ top: 4px;
+ left: 4px;
+ pointer-events: none;
+ z-index: 1000;
+ }
&-none {
height: 100%;
display: flex;
@@ -187,6 +187,8 @@ interface RawTask {
examNumber: string;
/** 试卷编号 */
paperNumber?: string;
+ /** 试卷类型 */
+ paperType?: string;
/** 一般不要用此处的subject,优先用setting.subject */
subject?: Subject;
/** 裁切图url */