|
@@ -135,7 +135,7 @@
|
|
|
label="ID"
|
|
|
sortable
|
|
|
></el-table-column>
|
|
|
- <el-table-column label="考生" width="100" sortable>
|
|
|
+ <el-table-column label="考生" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<el-popover trigger="hover" placement="left">
|
|
|
<div style="font-size: 18px;font-family: 新宋体">
|
|
@@ -384,7 +384,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="courseName" label="课程" sortable>
|
|
|
</el-table-column>
|
|
|
- <el-table-column width="130" label="考试状态" sortable>
|
|
|
+ <el-table-column width="130" label="考试状态">
|
|
|
<div slot-scope="scope">
|
|
|
<span v-if="null == scope.row.started"></span>
|
|
|
<span v-else-if="scope.row.started">已考</span>
|
|
@@ -582,25 +582,15 @@ export default {
|
|
|
.then(response => {
|
|
|
if ("search" == where) {
|
|
|
this.queryExams4SearchLoading = false;
|
|
|
- this.examList4Search = response.body;
|
|
|
+ this.examList4Search = response.data;
|
|
|
}
|
|
|
})
|
|
|
- .catch(response => {
|
|
|
- if (response.status == 500) {
|
|
|
- this.$notify({
|
|
|
- showClose: true,
|
|
|
- message: response.body.desc,
|
|
|
- type: "error"
|
|
|
- });
|
|
|
- }
|
|
|
+ .catch(() => {
|
|
|
if ("search" == where) {
|
|
|
this.queryExams4SearchLoading = false;
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
- closeStuExamDialog() {
|
|
|
- this.stuExamDialog = false;
|
|
|
- },
|
|
|
showStuExamDialog(row) {
|
|
|
this.stuExamSearch.identityNumber = row.identityNumber;
|
|
|
this.stuExamSearch.rootOrgId = row.rootOrgId;
|