|
@@ -432,6 +432,7 @@ export default defineComponent({
|
|
|
watch(
|
|
|
() => store.currentMarkResult?.trackList,
|
|
|
() => {
|
|
|
+ if (store.setting.mode !== ModeEnum.TRACK) return;
|
|
|
const markResult = findCurrentTaskMarkResult();
|
|
|
if (markResult && store.currentMarkResult) {
|
|
|
const scoreGroups = groupBy(
|
|
@@ -460,7 +461,8 @@ export default defineComponent({
|
|
|
// scoreList
|
|
|
// );
|
|
|
const cq = store.currentQuestion;
|
|
|
- if (cq) {
|
|
|
+ // 当无轨迹时,不更新
|
|
|
+ if (cq && markResult.trackList.length > 0) {
|
|
|
cq.score =
|
|
|
markResult.trackList
|
|
|
.filter(
|