diff --git a/entry/src/main/ets/pages/judgeSDK/judge.ets b/entry/src/main/ets/pages/judgeSDK/judge.ets index c1380d4..8a80c64 100644 --- a/entry/src/main/ets/pages/judgeSDK/judge.ets +++ b/entry/src/main/ets/pages/judgeSDK/judge.ets @@ -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('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; }