zhangjie 8 hours ago
parent
commit
288750133b
1 changed files with 2 additions and 2 deletions
  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(
   () => markStore.curQuestionScore,
-  (val, oldVal) => {
-    if (!oldVal && (val || val === 0)) markStore.checkNeedCountDown(val)
+  (val) => {
+    if (val || val === 0) markStore.checkNeedCountDown(val)
   }
 )