|
@@ -231,6 +231,13 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="是否违纪" width="100">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div>
|
|
|
+ <span>{{ scope.row.illegality == true ? "是" : "否" }}</span>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="评卷备注" width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<el-popover trigger="hover" name="text" placement="top">
|
|
@@ -465,6 +472,7 @@ export default {
|
|
|
duration: 5000,
|
|
|
});
|
|
|
this.dialogFormVisible = false;
|
|
|
+ this.searchMarkPaperCheck();
|
|
|
});
|
|
|
});
|
|
|
} else {
|