@@ -245,7 +245,10 @@ EventBus.on("draw-change", (list: any) => {
// 切换题目是清空上一题的分数
watch(
() => store.currentQuestion,
- () => (store.currentScore = undefined)
+ () => {
+ store.currentScore = undefined;
+ chooseScore(questionScoreSteps[1]);
+ }
);