|
@@ -95,7 +95,8 @@ export default {
|
|
|
async updateQuestion() {
|
|
|
const currentExamQuestion = this.examQuestion; // 避免以后执行时,this.examQuestion换掉了
|
|
|
const examRecordDataId = this.$route.params.examRecordDataId;
|
|
|
-
|
|
|
+ this.parentQuestionBody = null;
|
|
|
+ this.question = null;
|
|
|
let qContentRes = null;
|
|
|
try {
|
|
|
qContentRes = await this.$http.get(
|
|
@@ -110,10 +111,7 @@ export default {
|
|
|
console.log(
|
|
|
"QuestionView: 如果网络异常,又离开本页面后,不再后续处理此请求 "
|
|
|
);
|
|
|
- return;
|
|
|
}
|
|
|
- this.parentQuestionBody = null;
|
|
|
- this.question = null;
|
|
|
return;
|
|
|
}
|
|
|
|