fix:exam/examRecord userExam
This commit is contained in:
parent
73f4d2508d
commit
2f067ff199
|
@ -90,6 +90,9 @@
|
|||
<img v-if="scope.row.cert_path" :src="scope.row.cert_path" @click="handlePictureCardPreview(scope.row.cert_path)" alt="图片" height="30" width="50"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column align="left" label="单位名称">
|
||||
<template slot-scope="scope">{{ scope.row.blong_dept_name }}</template>
|
||||
</el-table-column>
|
||||
<el-table-column align="left" label="考试时间">
|
||||
<template slot-scope="scope">{{ scope.row.create_time }}</template>
|
||||
</el-table-column>
|
||||
|
|
|
@ -330,6 +330,9 @@ export default {
|
|||
// roles: [],
|
||||
saveLoading:false,
|
||||
fileList: [],
|
||||
impForm:{
|
||||
file:''
|
||||
},
|
||||
impDialogVisible: false,
|
||||
listLoading: true,
|
||||
downloadUrl: process.env.VUE_APP_BASE_API,
|
||||
|
@ -414,11 +417,9 @@ export default {
|
|||
this.impForm.file = '';
|
||||
},
|
||||
handleUpSuccess(res, file, filelist) {
|
||||
this.Content.file = res.data.id;
|
||||
this.impForm.file = res.data.path;
|
||||
},
|
||||
handleRemove(file, filelist) {
|
||||
this.Content.file = null;
|
||||
this.impForm.file = '';
|
||||
},
|
||||
handlePreview(file) {
|
||||
|
|
Loading…
Reference in New Issue