|
@@ -142,6 +142,7 @@ import {
|
|
|
loadImage,
|
|
|
addHeaderTrackColorAttr,
|
|
|
calcSumPrecision,
|
|
|
+ toPrecision,
|
|
|
} from "@/utils/utils";
|
|
|
import { dragImage } from "@/features/mark/use/draggable";
|
|
|
import { maxNum } from "@/utils/utils";
|
|
@@ -183,7 +184,7 @@ const objectiveScore = $computed(() => {
|
|
|
return store.currentTask?.objectiveScore || 0;
|
|
|
});
|
|
|
const subjectiveScore = $computed(() => {
|
|
|
- return totalScore - objectiveScore;
|
|
|
+ return toPrecision(totalScore - objectiveScore);
|
|
|
});
|
|
|
|
|
|
let sliceImagesWithTrackList: SliceImage[] = reactive([]);
|