|
@@ -481,11 +481,27 @@ defineExpose({ open })
|
|
|
show-overflow-tooltip />
|
|
|
<el-table-column fixed="right" prop="auditStatus" label="审核状态" width="" align="center"
|
|
|
:formatter="auditStatusFormatter" />
|
|
|
- <el-table-column fixed="right" prop="auditResult" label="审核结果" width="" align="center"
|
|
|
- :formatter="auditResultFormatter" />
|
|
|
+ <!-- :formatter="auditStatusFormatter" -->
|
|
|
+ <el-table-column fixed="right" prop="auditResult" label="审核结果" width="" align="center">
|
|
|
+ <template #default="scoped">
|
|
|
+ <div style="display: flex;justify-content: center;align-items: center;"
|
|
|
+ v-show="scoped.row.auditResult == '1'">
|
|
|
+ <img style="width: 14px;" src="../assets/footer/pass.png" alt="">
|
|
|
+ <div>通过</div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <div style="display: flex;justify-content: center;align-items: center;"
|
|
|
+ v-show="scoped.row.auditResult == '0'">
|
|
|
+ <img style="width: 14px;" src="../assets/footer/noPass.png" alt="">
|
|
|
+ <div>驳回</div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <!-- <el-table-column fixed="right" prop="auditResult" label="审核结果" width="" align="center"
|
|
|
+ :formatter="auditResultFormatter" /> -->
|
|
|
<el-table-column fixed="right" label="操作" min-width="" align="center">
|
|
|
<template #default="scoped">
|
|
|
-
|
|
|
<el-button v-show="scoped.row.auditResult == null" link type="primary" size="small"
|
|
|
@click="editFun(scoped.row, false)">重新编辑</el-button>
|
|
|
<el-button link type="primary" size="small" style="margin-left: 0px;"
|