zhangjie 18 小時之前
父節點
當前提交
288750133b
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/modules/marking/mark/components/ScoringPanel.vue

+ 2 - 2
src/modules/marking/mark/components/ScoringPanel.vue

@@ -169,8 +169,8 @@ watch(
 
 
 watch(
 watch(
   () => markStore.curQuestionScore,
   () => markStore.curQuestionScore,
-  (val, oldVal) => {
-    if (!oldVal && (val || val === 0)) markStore.checkNeedCountDown(val)
+  (val) => {
+    if (val || val === 0) markStore.checkNeedCountDown(val)
   }
   }
 )
 )