|
|
|
@ -12,7 +12,7 @@
|
|
|
|
|
<span>
|
|
|
|
|
本企业信息审核状态:
|
|
|
|
|
<el-tag :type="(inputQuery.auditStatus) | statusFilterType">
|
|
|
|
|
{{ checkFlag[inputQuery.auditStatus] }}
|
|
|
|
|
{{ checkSupFlag[inputQuery.auditStatus] }}
|
|
|
|
|
</el-tag>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
@ -142,7 +142,7 @@
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20" v-show="inputQuery.auditStatus==2" class="el-row" type="flex" style="margin-top: 0px">
|
|
|
|
|
<el-col :span="10" class="el-col">
|
|
|
|
|
<el-form-item label="驳回意见:" label-width="150px" prop="mobile">
|
|
|
|
|
<el-form-item label="结果说明:" label-width="150px" prop="mobile">
|
|
|
|
|
<el-input size="small" v-model="inputQuery.auditComment" disabled></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -179,6 +179,8 @@
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="备注" prop="remark"></el-table-column>
|
|
|
|
|
<el-table-column label="确认说明" prop="auditComment" show-overflow-tooltip></el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="状态" prop="status" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
@ -195,8 +197,12 @@
|
|
|
|
|
<el-button type="text" size="small" @click.native="addCert(scope.row)">编辑</el-button>
|
|
|
|
|
<el-button type="text" size="small" @click.native="toViewCompanyCert(scope.row)">预览</el-button>
|
|
|
|
|
<el-button type="text" size="small"
|
|
|
|
|
v-if="scope.row.auditStatus == 0 || scope.row.auditStatus == 2|| scope.row.auditStatus == 6" @click.native="deleteCompanyCert(scope.row)">删除</el-button>
|
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus == 2" @click.native="explainCompanyCert(scope.row)">说明</el-button>
|
|
|
|
|
v-if="scope.row.auditStatus == 0 || scope.row.auditStatus == 2|| scope.row.auditStatus == 6"
|
|
|
|
|
@click.native="deleteCompanyCert(scope.row)">删除
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus == 2"
|
|
|
|
|
@click.native="explainCompanyCert(scope.row)">说明
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
@ -403,7 +409,13 @@ export default {
|
|
|
|
|
3: "变更未确认",
|
|
|
|
|
6: "未确认",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
checkSupFlag: {
|
|
|
|
|
0: "草稿",
|
|
|
|
|
1: "已审核",
|
|
|
|
|
2: "已拒绝",
|
|
|
|
|
3: "变更未审核",
|
|
|
|
|
6: "未审核",
|
|
|
|
|
},
|
|
|
|
|
statusFlag: {
|
|
|
|
|
0: "有效",
|
|
|
|
|
1: "失效",
|
|
|
|
|