Răsfoiți Sursa

断点续考原因

zhangjie 1 an în urmă
părinte
comite
a6f328b355

+ 3 - 0
src/features/examwork/StudentManagement/StudentTrackRecord.vue

@@ -313,6 +313,9 @@ export default {
         } else {
           info.title = transformInfo[info.type] || content[0];
         }
+        if (info.title.trim() === "断点续考") {
+          info.desc = info.remark;
+        }
         if (info.remark && info.remark.includes('{"')) {
           info.remark = JSON.parse(info.remark);
           if (info.remark["MIN_CREATE_TIME"]) {

+ 3 - 1
src/features/invigilation/OnlinePatrol/PatrolWarningDetail.vue

@@ -163,7 +163,6 @@
                     >
                   </div>
                   <p v-if="log.desc">{{ log.desc }}</p>
-                  <p v-if="log.remark">{{ log.remark }}</p>
                   <p>
                     时间段:
                     <span v-if="log.startTime">{{ log.startTime }} ~ </span>
@@ -361,6 +360,9 @@ export default {
         } else {
           info.title = transformInfo[info.type] || content[0];
         }
+        if (info.title.trim() === "断点续考") {
+          info.desc = info.remark;
+        }
         if (info.remark && info.remark.includes('{"')) {
           info.remark = JSON.parse(info.remark);
           if (info.remark["MIN_CREATE_TIME"]) {

+ 3 - 0
src/features/invigilation/RealtimeMonitoring/WarningDetail.vue

@@ -592,6 +592,9 @@ export default {
         } else {
           info.title = transformInfo[info.type] || content[0];
         }
+        if (info.title.trim() === "断点续考") {
+          info.desc = info.remark;
+        }
         if (info.remark && info.remark.includes('{"')) {
           info.remark = JSON.parse(info.remark);
           if (info.remark["MIN_CREATE_TIME"]) {