|
@@ -367,6 +367,16 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
+ <el-row :gutter="20">
|
|
|
+ <el-col :span="10">
|
|
|
+ <el-form-item label="试卷袋编码" :label-width="formLabelWidth">
|
|
|
+ <el-input
|
|
|
+ class="input"
|
|
|
+ v-model="examStudentForm.ext1"
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
</el-form>
|
|
|
<div class="dialog-footer">
|
|
|
<el-button type="primary" @click="addStudent">确 定</el-button>
|
|
@@ -586,6 +596,16 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
+ <el-row :gutter="20">
|
|
|
+ <el-col :span="10">
|
|
|
+ <el-form-item label="试卷袋编码" :label-width="formLabelWidth">
|
|
|
+ <el-input
|
|
|
+ class="input"
|
|
|
+ v-model="examStudentForm.ext1"
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
</el-form>
|
|
|
<div class="dialog-footer">
|
|
|
<el-button type="primary" @click="updateStudent">确 定</el-button>
|
|
@@ -749,6 +769,12 @@
|
|
|
{{ scope.row.examSite }}
|
|
|
</td>
|
|
|
</tr>
|
|
|
+ <tr>
|
|
|
+ <td style="color: green">试卷袋编码</td>
|
|
|
+ <td style="color:purple;padding-left: 20px;">
|
|
|
+ {{ scope.row.ext1 }}
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
</div>
|
|
|
|
|
|
<div slot="reference" class="name-wrapper">
|
|
@@ -1008,7 +1034,12 @@ export default {
|
|
|
grade: "",
|
|
|
phone: "",
|
|
|
infoCollector: "",
|
|
|
- paperType: "X"
|
|
|
+ paperType: "X",
|
|
|
+ ext1: null,
|
|
|
+ ext2: null,
|
|
|
+ ext3: null,
|
|
|
+ ext4: null,
|
|
|
+ ext5: null
|
|
|
},
|
|
|
|
|
|
studentImportForm: {
|
|
@@ -1498,6 +1529,11 @@ export default {
|
|
|
this.examStudentForm.phone = row.phone;
|
|
|
this.examStudentForm.infoCollector = row.infoCollector;
|
|
|
this.examStudentForm.paperType = row.paperType;
|
|
|
+ this.examStudentForm.ext1 = row.ext1;
|
|
|
+ this.examStudentForm.ext2 = row.ext2;
|
|
|
+ this.examStudentForm.ext3 = row.ext3;
|
|
|
+ this.examStudentForm.ext4 = row.ext4;
|
|
|
+ this.examStudentForm.ext5 = row.ext5;
|
|
|
|
|
|
this.updateStudentDialog = true;
|
|
|
},
|