|
|
|
@ -49,17 +49,14 @@
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="生产企业资质证书" prop="auditStatus" width="180">
|
|
|
|
|
<el-table-column label="生产企业资质证书" prop="checkStatus" width="180">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
|
|
|
|
<el-tag type="danger" v-if="scope.row.failCout==0 && scope.row.passCout==0">
|
|
|
|
|
未添加证书
|
|
|
|
|
<el-tag type="danger" v-if="scope.row.checkStatus==0">
|
|
|
|
|
未审核
|
|
|
|
|
</el-tag>
|
|
|
|
|
<el-tag type="warning" v-if="scope.row.failCout>0">
|
|
|
|
|
未全部审核
|
|
|
|
|
</el-tag>
|
|
|
|
|
<el-tag type="success" v-if="scope.row.failCout==0 && scope.row.passCout>0">
|
|
|
|
|
已全部审核
|
|
|
|
|
<el-tag type="success" v-if="scope.row.checkStatus==1">
|
|
|
|
|
已审核
|
|
|
|
|
</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
@ -166,16 +163,17 @@
|
|
|
|
|
<el-table v-loading="loadManufacturerLoading" :data="manufacturerList" style="width: 100%" ref="table"
|
|
|
|
|
highlight-current-row border @row-click="supManufacturerClick">
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column label="生产企业名称" prop="companyName" width="200" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="社会信用号" prop="creditCode"></el-table-column>
|
|
|
|
|
<el-table-column label="生产企业名称" prop="ylqxzcrbarmc" width="200" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="统一社会信用代码" prop="tyshxydm"show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="注册/备案证号" prop="zczbhhzbapzbh"show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="企业类型" prop="bussinessStatus" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ companyTypeMap[scope.row.companyType] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="所在地区" prop="placeArea"></el-table-column>
|
|
|
|
|
<el-table-column label="所在地址" prop="placeAddress" :show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="所属供应商" prop="supName" :show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="产品名称" prop="cpmctymc"show-overflow-tooltip></el-table-column>
|
|
|
|
|
<!-- <el-table-column label="产品类别" prop="addType" :show-overflow-tooltip="true"></el-table-column>-->
|
|
|
|
|
<el-table-column label="分类编码" prop="flbm" :show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="产品资质证书" prop="auditStatus" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
|
|
|
@ -201,10 +199,10 @@
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" size="small"
|
|
|
|
|
v-if="scope.row.auditStatus ==6 || scope.row.auditStatus ==3|| scope.row.auditStatus ==4"
|
|
|
|
|
@click.native.stop="addInfoDialog(scope.row)">审核
|
|
|
|
|
</el-button>
|
|
|
|
|
<!-- <el-button type="text" size="small"-->
|
|
|
|
|
<!-- v-if="scope.row.auditStatus ==6 || scope.row.auditStatus ==3|| scope.row.auditStatus ==4"-->
|
|
|
|
|
<!-- @click.native.stop="addInfoDialog(scope.row)">审核-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<el-button type="text" size="small"
|
|
|
|
|
v-if="scope.row.auditStatus !=6 && scope.row.auditStatus !=3 && scope.row.auditStatus !=4"
|
|
|
|
|
@click.native.stop="addInfoDialog(scope.row)">详情
|
|
|
|
@ -393,6 +391,7 @@ export default {
|
|
|
|
|
showSearch2: true,
|
|
|
|
|
filterManufacturerQuery: {
|
|
|
|
|
customerId: null,
|
|
|
|
|
companyIdFk: null,
|
|
|
|
|
companyName: "",
|
|
|
|
|
creditCode: "",
|
|
|
|
|
placeArea: "",
|
|
|
|
@ -582,8 +581,10 @@ export default {
|
|
|
|
|
/**-------------------------生产企业资质--------------------------*/
|
|
|
|
|
onManufacturerReset() {
|
|
|
|
|
let customerId = this.filterManufacturerQuery.customerId;
|
|
|
|
|
|
|
|
|
|
this.filterManufacturerQuery = {
|
|
|
|
|
customerId: customerId,
|
|
|
|
|
customerId: "",
|
|
|
|
|
companyIdFk:customerId,
|
|
|
|
|
companyName: "",
|
|
|
|
|
creditCode: "",
|
|
|
|
|
placeArea: "",
|
|
|
|
@ -613,7 +614,8 @@ export default {
|
|
|
|
|
getManufacturerList() {
|
|
|
|
|
this.manufacturerLoading = true;
|
|
|
|
|
// this.filterManufacturerQuery.productStatus = 1;
|
|
|
|
|
this.filterManufacturerQuery.companyId=this.list.id
|
|
|
|
|
// this.filterManufacturerQuery.companyIdFk=this.list.id
|
|
|
|
|
|
|
|
|
|
getCompanyList(this.filterManufacturerQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.manufacturerLoading = false;
|
|
|
|
|