Browse Source

bug fix:打开历史任务面板,第一个历史任务的图片过大时,全屏loading遮罩层提前消失了,导致用户可以在加载图片时点击其他任务导致代码逻辑问题

刘洋 2 years ago
parent
commit
272289ceb2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/features/mark/MarkHistory.vue

+ 1 - 1
src/features/mark/MarkHistory.vue

@@ -164,7 +164,7 @@ const currentTaskChange = async () => {
       // 恢复以前的行为,取回评失败则评卷任务为空
       replaceCurrentTask(undefined);
     } finally {
-      store.globalMask = false;
+      // store.globalMask = false;
     }
     replaceCurrentTask(store.historyTasks[0]);
   } else {