|
@@ -141,12 +141,14 @@
|
|
|
<!-- <el-table-column label="纳税人识别号" align="center" prop="tin" />-->
|
|
|
<!-- <el-table-column label="法人" align="center" prop="corporation" />-->
|
|
|
<el-table-column
|
|
|
- label="成立日期"
|
|
|
+ label="审核状态"
|
|
|
align="center"
|
|
|
- prop="incorporationDate"
|
|
|
- :formatter="dateFormatter"
|
|
|
- width="180px"
|
|
|
- />
|
|
|
+ prop="auditStatus"
|
|
|
+ >
|
|
|
+ <template #default="scope">
|
|
|
+ <dict-tag :type="DICT_TYPE.CRM_AUDIT_STATUS" :value="scope.row.auditStatus" />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<!-- <el-table-column label="公司地址" align="center" prop="address" />-->
|
|
|
<!-- <el-table-column label="经营范围" align="center" prop="bizScope" />-->
|
|
|
<!-- <el-table-column label="注册资金(万元)" align="center" prop="registeredCapital" />-->
|
|
@@ -194,7 +196,7 @@
|
|
|
<Icon icon="ep:delete" />删除
|
|
|
</el-dropdown-item>
|
|
|
<el-dropdown-item
|
|
|
- v-if="scope.row.auditStatus === 0"
|
|
|
+ v-if="scope.row.auditStatus === 0&&scope.row.status === 0"
|
|
|
command="handleSubmit"
|
|
|
>
|
|
|
<Icon icon="ep:circle-check" />提交审核
|