This commit is contained in:
wangzhongjie 2025-07-22 09:28:31 +08:00
commit af8455f652

View File

@ -689,7 +689,8 @@ export default class Judge {
this.modelPath = JudgeConfig.modelPath;
this.trajectoryPath = JudgeConfig.trajectoryPath;
this.isExam = !this.judgeUI.singlePlay;
//TODO 临时改动
this.isExam = !AppStorage.get<boolean>('singlePlay')!;
(judgeUI.examSubject == '2' ? testKm2Items : testKm3Items).forEach(item => {
const projectCenterObj: ProjectInfo = Reflect.get(judgeUI.projectsCenterObj, item.code)
@ -698,7 +699,6 @@ export default class Judge {
status: projectCenterObj === undefined ? 0 : (projectCenterObj.isEnd ? 3 : 1)
})
})
dConsole.info(JudgeTag + 'testKmItems', JSON.stringify(this.kmItems))
this.isExamEnd = false;
}