|
@@ -205,7 +205,7 @@ const isLast = $computed(() => currentIndex === studentIds.length - 1);
|
|
|
const isMultiStudent = $computed(() => studentIds.length > 1);
|
|
|
const totalScore = $computed(() => {
|
|
|
if (!student) return 0;
|
|
|
- return (student.objectiveScore || 0) + (student.subjectiveScore || 0);
|
|
|
+ return student.objectiveScore || 0;
|
|
|
});
|
|
|
|
|
|
const curImageUrl = $computed(() =>
|