|
|
|
@ -33,10 +33,10 @@
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row
|
|
|
|
|
@row-click="supCompanyClick">
|
|
|
|
|
<el-table-column type="index" label="序号" width="50"></el-table-column>
|
|
|
|
|
<el-table-column label="注册企业名称" prop="companyName" width="160" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="统一社会信用号" prop="creditNum" width="160"></el-table-column>
|
|
|
|
|
<el-table-column label="注册企业名称" prop="companyName" width="180" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="统一社会信用号" prop="creditNum" width="180"></el-table-column>
|
|
|
|
|
<!-- <el-table-column label="所属地区" prop="area" width="180"></el-table-column>-->
|
|
|
|
|
<el-table-column label="注册地址" prop="registerAddress" :show-overflow-tooltip="true" width="180"></el-table-column>
|
|
|
|
|
<el-table-column label="注册地址" prop="registerAddress" :show-overflow-tooltip="true" width="200"></el-table-column>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="审核状态" prop="checkStatus" width="120">
|
|
|
|
@ -48,7 +48,7 @@
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="生产企业资质证书" prop="auditStatus" width="120">
|
|
|
|
|
<el-table-column label="生产企业资质证书" prop="auditStatus" width="180">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
|
|
|
|
<el-tag type="danger" v-if="scope.row.failCout==0 && scope.row.passCout==0">
|
|
|
|
@ -63,7 +63,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="产品资质证书" prop="auditStatus" width="120">
|
|
|
|
|
<el-table-column label="产品资质证书" prop="auditStatus" width="180">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag type="danger" v-if="scope.row.productFailCout==0 && scope.row.prouctPassCout==0">
|
|
|
|
|
未添加证书
|
|
|
|
@ -78,18 +78,24 @@
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" width="120">
|
|
|
|
|
<el-table-column label="操作" width="126">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
<!-- type="text"-->
|
|
|
|
|
<!-- v-if="scope.row.auditStatus ==6 || scope.row.auditStatus ==3|| scope.row.auditStatus ==4"-->
|
|
|
|
|
<!-- @click.native.stop="editCompany(scope.row)"-->
|
|
|
|
|
<!-- >审核-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
<!-- type="text"-->
|
|
|
|
|
<!-- v-if="scope.row.auditStatus !=6 && scope.row.auditStatus !=3 && scope.row.auditStatus !=4"-->
|
|
|
|
|
<!-- @click.native.stop="editCompany(scope.row)"-->
|
|
|
|
|
<!-- >详情-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
v-if="scope.row.auditStatus ==6 || scope.row.auditStatus ==3|| scope.row.auditStatus ==4"
|
|
|
|
|
@click.native.stop="editCompany(scope.row)"
|
|
|
|
|
>审核
|
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
v-if="scope.row.auditStatus !=6 && scope.row.auditStatus !=3 && scope.row.auditStatus !=4"
|
|
|
|
|
v-if="scope.row.checkStatus =1"
|
|
|
|
|
@click.native.stop="editCompany(scope.row)"
|
|
|
|
|
>详情
|
|
|
|
|
</el-button>
|
|
|
|
|