|
@@ -166,19 +166,17 @@
|
|
|
@close="closeAddingStudentDialog"
|
|
|
title="考生信息页面"
|
|
|
:visible.sync="addingStudentDialog"
|
|
|
- width="60%"
|
|
|
+ width="500px"
|
|
|
>
|
|
|
<el-form
|
|
|
:model="examStudentForm"
|
|
|
:rules="rules"
|
|
|
:inline="true"
|
|
|
ref="addingStudentForm"
|
|
|
+ inline-message
|
|
|
+ label-width="85px"
|
|
|
>
|
|
|
- <el-form-item
|
|
|
- label="考试"
|
|
|
- :label-width="formLabelWidth"
|
|
|
- prop="examId"
|
|
|
- >
|
|
|
+ <el-form-item label="考试" prop="examId">
|
|
|
<el-select
|
|
|
class="input"
|
|
|
:remote-method="queryExams4InsertOrUpdate"
|
|
@@ -199,44 +197,28 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item
|
|
|
- label="姓名"
|
|
|
- :label-width="formLabelWidth"
|
|
|
- prop="studentName"
|
|
|
- >
|
|
|
+ <el-form-item label="姓名" prop="studentName">
|
|
|
<el-input
|
|
|
class="input"
|
|
|
v-model="examStudentForm.studentName"
|
|
|
auto-complete="off"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item
|
|
|
- label="学号"
|
|
|
- :label-width="formLabelWidth"
|
|
|
- prop="studentCode"
|
|
|
- >
|
|
|
+ <el-form-item label="学号" prop="studentCode">
|
|
|
<el-input
|
|
|
class="input"
|
|
|
v-model="examStudentForm.studentCode"
|
|
|
auto-complete="off"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item
|
|
|
- label="身份证号"
|
|
|
- :label-width="formLabelWidth"
|
|
|
- prop="identityNumber"
|
|
|
- >
|
|
|
+ <el-form-item label="身份证号" prop="identityNumber">
|
|
|
<el-input
|
|
|
class="input"
|
|
|
v-model="examStudentForm.identityNumber"
|
|
|
auto-complete="off"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item
|
|
|
- label="学习中心"
|
|
|
- :label-width="formLabelWidth"
|
|
|
- prop="orgId"
|
|
|
- >
|
|
|
+ <el-form-item label="学习中心" prop="orgId">
|
|
|
<el-select
|
|
|
class="input"
|
|
|
:remote-method="getOrgList4InsertOrUpdate"
|
|
@@ -258,11 +240,7 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item
|
|
|
- label="课程"
|
|
|
- :label-width="formLabelWidth"
|
|
|
- prop="courseId"
|
|
|
- >
|
|
|
+ <el-form-item label="课程" prop="courseId">
|
|
|
<el-select
|
|
|
:remote-method="getCourses4InsertOrUpdate"
|
|
|
:loading="courseLoading4InsertOrUpdate"
|
|
@@ -283,11 +261,7 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item
|
|
|
- label="试卷类型"
|
|
|
- :label-width="formLabelWidth"
|
|
|
- prop="paperType"
|
|
|
- >
|
|
|
+ <el-form-item label="试卷类型" prop="paperType">
|
|
|
<el-select
|
|
|
class="input"
|
|
|
v-model="examStudentForm.paperType"
|
|
@@ -302,41 +276,41 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="专业" :label-width="formLabelWidth">
|
|
|
+ <el-form-item label="专业">
|
|
|
<el-input
|
|
|
class="input"
|
|
|
v-model="examStudentForm.specialtyName"
|
|
|
auto-complete="off"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="考点" :label-width="formLabelWidth">
|
|
|
+ <el-form-item label="考点">
|
|
|
<el-input
|
|
|
class="input"
|
|
|
v-model="examStudentForm.examSite"
|
|
|
auto-complete="off"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="年级" :label-width="formLabelWidth">
|
|
|
+ <el-form-item label="年级">
|
|
|
<el-input
|
|
|
class="input"
|
|
|
v-model="examStudentForm.grade"
|
|
|
auto-complete="off"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="采集人" :label-width="formLabelWidth">
|
|
|
+ <el-form-item label="采集人">
|
|
|
<el-input
|
|
|
class="input"
|
|
|
v-model="examStudentForm.infoCollector"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="电话" :label-width="formLabelWidth">
|
|
|
+ <el-form-item label="电话">
|
|
|
<el-input
|
|
|
class="input"
|
|
|
v-model="examStudentForm.phone"
|
|
|
auto-complete="off"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="试卷袋编码" :label-width="formLabelWidth">
|
|
|
+ <el-form-item label="试卷袋编码">
|
|
|
<el-input class="input" v-model="examStudentForm.ext1"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
@@ -348,6 +322,7 @@
|
|
|
|
|
|
<!-- 修改弹出窗口 -->
|
|
|
<el-dialog
|
|
|
+ width="500px"
|
|
|
@close="closeUpdateStudentDialog"
|
|
|
title="考生信息页面"
|
|
|
:visible.sync="updateStudentDialog"
|
|
@@ -358,12 +333,10 @@
|
|
|
:rules="rules"
|
|
|
:inline="true"
|
|
|
ref="updateStudentForm"
|
|
|
+ label-width="85px"
|
|
|
+ inline-message
|
|
|
>
|
|
|
- <el-form-item
|
|
|
- label="考试"
|
|
|
- :label-width="formLabelWidth"
|
|
|
- prop="examId"
|
|
|
- >
|
|
|
+ <el-form-item label="考试" prop="examId">
|
|
|
<el-select
|
|
|
class="input"
|
|
|
:remote-method="queryExams4InsertOrUpdate"
|
|
@@ -385,44 +358,28 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item
|
|
|
- label="姓名"
|
|
|
- :label-width="formLabelWidth"
|
|
|
- prop="studentName"
|
|
|
- >
|
|
|
+ <el-form-item label="姓名" prop="studentName">
|
|
|
<el-input
|
|
|
class="input"
|
|
|
v-model="examStudentForm.studentName"
|
|
|
auto-complete="off"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item
|
|
|
- label="学号"
|
|
|
- :label-width="formLabelWidth"
|
|
|
- prop="studentCode"
|
|
|
- >
|
|
|
+ <el-form-item label="学号" prop="studentCode">
|
|
|
<el-input
|
|
|
class="input"
|
|
|
v-model="examStudentForm.studentCode"
|
|
|
readonly
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item
|
|
|
- label="身份证号"
|
|
|
- :label-width="formLabelWidth"
|
|
|
- prop="identityNumber"
|
|
|
- >
|
|
|
+ <el-form-item label="身份证号" prop="identityNumber">
|
|
|
<el-input
|
|
|
class="input"
|
|
|
v-model="examStudentForm.identityNumber"
|
|
|
readonly
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item
|
|
|
- label="学习中心"
|
|
|
- :label-width="formLabelWidth"
|
|
|
- prop="orgId"
|
|
|
- >
|
|
|
+ <el-form-item label="学习中心" prop="orgId">
|
|
|
<el-select
|
|
|
class="input"
|
|
|
:remote-method="getOrgList4InsertOrUpdate"
|
|
@@ -444,11 +401,7 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item
|
|
|
- label="课程"
|
|
|
- :label-width="formLabelWidth"
|
|
|
- prop="courseId"
|
|
|
- >
|
|
|
+ <el-form-item label="课程" prop="courseId">
|
|
|
<el-select
|
|
|
:remote-method="getCourses4InsertOrUpdate"
|
|
|
:loading="courseLoading4InsertOrUpdate"
|
|
@@ -470,11 +423,7 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item
|
|
|
- label="试卷类型"
|
|
|
- :label-width="formLabelWidth"
|
|
|
- prop="paperType"
|
|
|
- >
|
|
|
+ <el-form-item label="试卷类型" prop="paperType">
|
|
|
<el-select
|
|
|
class="input"
|
|
|
v-model="examStudentForm.paperType"
|
|
@@ -489,41 +438,41 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="专业" :label-width="formLabelWidth">
|
|
|
+ <el-form-item label="专业">
|
|
|
<el-input
|
|
|
class="input"
|
|
|
v-model="examStudentForm.specialtyName"
|
|
|
auto-complete="off"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="考点" :label-width="formLabelWidth">
|
|
|
+ <el-form-item label="考点">
|
|
|
<el-input
|
|
|
class="input"
|
|
|
v-model="examStudentForm.examSite"
|
|
|
auto-complete="off"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="年级" :label-width="formLabelWidth">
|
|
|
+ <el-form-item label="年级">
|
|
|
<el-input
|
|
|
class="input"
|
|
|
v-model="examStudentForm.grade"
|
|
|
auto-complete="off"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="采集人" :label-width="formLabelWidth">
|
|
|
+ <el-form-item label="采集人">
|
|
|
<el-input
|
|
|
class="input"
|
|
|
v-model="examStudentForm.infoCollector"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="电话" :label-width="formLabelWidth">
|
|
|
+ <el-form-item label="电话">
|
|
|
<el-input
|
|
|
class="input"
|
|
|
v-model="examStudentForm.phone"
|
|
|
auto-complete="off"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="试卷袋编码" :label-width="formLabelWidth">
|
|
|
+ <el-form-item label="试卷袋编码">
|
|
|
<el-input class="input" v-model="examStudentForm.ext1"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
@@ -1728,6 +1677,6 @@ export default {
|
|
|
</script>
|
|
|
<style scoped>
|
|
|
.input {
|
|
|
- width: 170px;
|
|
|
+ width: 250px;
|
|
|
}
|
|
|
</style>
|