|
@@ -441,6 +441,7 @@
|
|
|
class="input"
|
|
|
:disabled="examStageDisabled4Update"
|
|
|
:remote-method="queryExamStages4Update"
|
|
|
+ @focus="e => queryExamStages4Update(e.target.value)"
|
|
|
remote
|
|
|
clearable
|
|
|
:loading="queryExamStages4UpdateLoading"
|
|
@@ -1060,6 +1061,7 @@ export default {
|
|
|
id: null,
|
|
|
examId: "",
|
|
|
examStageId: "",
|
|
|
+ examStageOrder: "",
|
|
|
courseId: null,
|
|
|
studentId: null,
|
|
|
studentName: "",
|
|
@@ -1592,6 +1594,7 @@ export default {
|
|
|
this.examStudentForm.infoCollector = null;
|
|
|
this.examStudentForm.ext1 = null;
|
|
|
this.examStudentForm.examStageId = null;
|
|
|
+ this.examStudentForm.examStageOrder = null;
|
|
|
if (this.pureLC) {
|
|
|
this.examStudentForm.orgId = this.lc_id;
|
|
|
this.orgList4InsertOrUpdate = [
|
|
@@ -1643,7 +1646,12 @@ export default {
|
|
|
this.examStudentForm.ext4 = row.ext4;
|
|
|
this.examStudentForm.ext5 = row.ext5;
|
|
|
this.examStudentForm.examStageId = row.examStageId;
|
|
|
+ this.examStudentForm.examStageOrder = row.examStageOrder;
|
|
|
|
|
|
+ this.queryExamStages4Update(
|
|
|
+ this.examStudentForm.examId,
|
|
|
+ this.examStudentForm.examStageOrder
|
|
|
+ );
|
|
|
this.updateStudentDialog = true;
|
|
|
},
|
|
|
//禁用
|