|
|
@@ -224,6 +224,11 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column min-width="100" align="center" label="状态" prop="uploadStatus">
|
|
|
</el-table-column>
|
|
|
+ <el-table-column min-width="100" align="center" label="驳回原因">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-link type="primary" :underline="false" v-if="scope.row.content" @click="handleClickViewContent(scope.row.content)">查看</el-link>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column min-width="200" align="center" label="附件">
|
|
|
<template slot-scope="props">
|
|
|
<div v-for="(item, index) in props.row.files" :key="index">
|
|
|
@@ -587,6 +592,12 @@ export default {
|
|
|
this.remarkHtml = response.data.data.content
|
|
|
})
|
|
|
},
|
|
|
+ handleClickViewContent(val){
|
|
|
+ this.$alert(val, '驳回原因', {
|
|
|
+ // showConfirmButton:false,
|
|
|
+ // showClose: false,
|
|
|
+ });
|
|
|
+ },
|
|
|
handleClickViewZan(id) {
|
|
|
this.isIndeterminate = false;
|
|
|
this.checkAll = false;
|