|
@@ -2,7 +2,7 @@
|
|
<el-dialog
|
|
<el-dialog
|
|
ref="dialog"
|
|
ref="dialog"
|
|
title="考试记录"
|
|
title="考试记录"
|
|
- width="450px"
|
|
|
|
|
|
+ width="600px"
|
|
:visible.sync="visible"
|
|
:visible.sync="visible"
|
|
@close="closeDialog"
|
|
@close="closeDialog"
|
|
>
|
|
>
|
|
@@ -24,17 +24,17 @@
|
|
<el-table-column width="100" label="姓名">
|
|
<el-table-column width="100" label="姓名">
|
|
<span slot-scope="scope">{{ scope.row.name }}</span>
|
|
<span slot-scope="scope">{{ scope.row.name }}</span>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column width="100" label="证件号">
|
|
|
|
|
|
+ <el-table-column width="180" label="证件号">
|
|
<span slot-scope="scope">{{ scope.row.identity }}</span>
|
|
<span slot-scope="scope">{{ scope.row.identity }}</span>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column width="100" label="批次名称">
|
|
|
|
|
|
+ <el-table-column label="批次名称">
|
|
<span slot-scope="scope">{{ scope.row.examName }}</span>
|
|
<span slot-scope="scope">{{ scope.row.examName }}</span>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column width="100" label="课程">
|
|
<el-table-column width="100" label="课程">
|
|
<span slot-scope="scope">{{ scope.row.courseName }}</span>
|
|
<span slot-scope="scope">{{ scope.row.courseName }}</span>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column width="100" label="状态">
|
|
<el-table-column width="100" label="状态">
|
|
- <span slot-scope="scope">{{ scope.row.state }}</span>
|
|
|
|
|
|
+ <span slot-scope="scope">{{ scope.row.status }}</span>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
<div class="page float-right">
|
|
<div class="page float-right">
|
|
@@ -48,6 +48,7 @@
|
|
:total="total"
|
|
:total="total"
|
|
/>
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div class="my-2"></div>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -58,6 +59,13 @@ export default {
|
|
props: {
|
|
props: {
|
|
student: Object,
|
|
student: Object,
|
|
},
|
|
},
|
|
|
|
+ watch: {
|
|
|
|
+ student() {
|
|
|
|
+ this.tableData = [];
|
|
|
|
+ this.pageSize = 10;
|
|
|
|
+ this.total = 0;
|
|
|
|
+ },
|
|
|
|
+ },
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
visible: false,
|
|
visible: false,
|