|
@@ -1567,6 +1567,7 @@ export default {
|
|
|
this.examStudentForm.phone = null;
|
|
|
this.examStudentForm.infoCollector = null;
|
|
|
this.examStudentForm.ext1 = null;
|
|
|
+ this.examStudentForm.examStageId = null;
|
|
|
if (this.pureLC) {
|
|
|
this.examStudentForm.orgId = this.lc_id;
|
|
|
this.orgList4InsertOrUpdate = [
|
|
@@ -1579,6 +1580,7 @@ export default {
|
|
|
}
|
|
|
this.examList4InsertOrUpdate = [];
|
|
|
this.courseList4InsertOrUpdate = [];
|
|
|
+ this.examStageDisabled4Insert = true;
|
|
|
|
|
|
this.queryExams4InsertOrUpdate("");
|
|
|
this.getCourses4InsertOrUpdate("");
|
|
@@ -1891,6 +1893,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
handleExamChange4Search(value) {
|
|
|
+ this.formSearch.examStageId = "";
|
|
|
if (this.examList4Search.length > 0) {
|
|
|
let examArr = this.examList4Search.filter(p => p.id == value);
|
|
|
if (examArr && examArr.length > 0) {
|
|
@@ -1912,6 +1915,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
handleExamChange4InsertOrUpdate(value) {
|
|
|
+ this.examStudentForm.examStageId = "";
|
|
|
if (this.examList4InsertOrUpdate.length > 0) {
|
|
|
let examArr = this.examList4InsertOrUpdate.filter(p => p.id == value);
|
|
|
if (examArr && examArr.length > 0) {
|