|
@@ -156,6 +156,7 @@ export default {
|
|
|
this.examQuestion();
|
|
|
},
|
|
|
shouldSubmitPaper() {
|
|
|
+ this.logger({ action: "时间到自动交卷" });
|
|
|
this.realSubmitPaper();
|
|
|
},
|
|
|
questionAnswerFileUrl(value) {
|
|
@@ -788,6 +789,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
async submitPaper() {
|
|
|
+ this.logger({ action: "学生点击交卷" });
|
|
|
try {
|
|
|
// 交卷前强制提交所有答案
|
|
|
const ret = await this.answerAllQuestions(true);
|
|
@@ -870,7 +872,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
if (this.$route.name !== "OnlineExamingHome") {
|
|
|
- // 非考试页,不在交卷
|
|
|
+ // 非考试页,不再交卷
|
|
|
this.$Spin.hide();
|
|
|
return;
|
|
|
}
|