|
@@ -410,6 +410,7 @@
|
|
|
v-model="examStudentForm.orgId"
|
|
|
placeholder="请选择"
|
|
|
:disabled="pureLC"
|
|
|
+ @clear="clearOrg4UpdateExamStudent"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="item in orgList4InsertOrUpdate"
|
|
@@ -523,7 +524,7 @@
|
|
|
ref="studentCopyForm"
|
|
|
class="editForm"
|
|
|
:inline="true"
|
|
|
- label-width="200px"
|
|
|
+ label-width="120px"
|
|
|
>
|
|
|
<el-form-item label="源考试批次" prop="sourceExamId">
|
|
|
<el-select
|
|
@@ -566,7 +567,7 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <div class="dialog-footer">
|
|
|
+ <div style="text-align: center;">
|
|
|
<el-button type="primary" @click="copyStudent">确 定</el-button>
|
|
|
<el-button @click="studentCopyDialog = false">取 消</el-button>
|
|
|
</div>
|
|
@@ -1064,6 +1065,9 @@ export default {
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
+ clearOrg4UpdateExamStudent() {
|
|
|
+ this.getOrgList4InsertOrUpdate("");
|
|
|
+ },
|
|
|
queryExams4Search(name) {
|
|
|
this.queryExams(name, "search");
|
|
|
},
|
|
@@ -1523,6 +1527,8 @@ export default {
|
|
|
this.studentCopyForm.targetExamId = null;
|
|
|
this.examList4CopyFrom = [];
|
|
|
this.examList4CopyTo = [];
|
|
|
+ this.queryExams4CopyFrom("");
|
|
|
+ this.queryExams4CopyTo("");
|
|
|
},
|
|
|
//复制学生
|
|
|
copyStudent() {
|
|
@@ -1538,7 +1544,7 @@ export default {
|
|
|
});
|
|
|
return;
|
|
|
}
|
|
|
- var url =
|
|
|
+ let url =
|
|
|
TASK_API +
|
|
|
"/copyExamStudent/addCopyTask?" +
|
|
|
new URLSearchParams({
|