企业资质审核代码更新备份

master
1178634255 2 years ago
parent f1fdeee0b1
commit 61b6d1db45

@ -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;

@ -16,51 +16,51 @@
<el-button v-if="editType==1 && auditType!=1" type="primary" size="mini" icon="search" @click="printSupCertAll">
</el-button>
</div>
<el-row :gutter="20" class="el-row" type="flex" style="margin-top: 20px">
<el-col :span="10" class="el-col">
<el-form-item label="所属供应商:" label-width="150px" prop="customerId">
<el-select
v-model="inputQuery.customerId"
filterable
remote
clearable="true"
disabled
reserve-keyword
placeholder="请输入供应商名称"
:remote-method="findMethod"
:loading="loading"
style="width: 100%;"
@change="unitChange"
>
<el-option
v-for="item in fromOptions"
:key="item.customerId"
:label="item.companyName"
:value="item.customerId"
>
<span style="float: left">{{ item.companyName }}</span>
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<!-- <el-row :gutter="20" class="el-row" type="flex" style="margin-top: 20px">-->
<!-- <el-col :span="10" class="el-col">-->
<!-- <el-form-item label="所属供应商:" label-width="150px" prop="customerId">-->
<!-- <el-select-->
<!-- v-model="inputQuery.customerId"-->
<!-- filterable-->
<!-- remote-->
<!-- clearable="true"-->
<!-- disabled-->
<!-- reserve-keyword-->
<!-- placeholder="请输入供应商名称"-->
<!-- :remote-method="findMethod"-->
<!-- :loading="loading"-->
<!-- style="width: 100%;"-->
<!-- @change="unitChange"-->
<!-- >-->
<!-- <el-option-->
<!-- v-for="item in fromOptions"-->
<!-- :key="item.customerId"-->
<!-- :label="item.companyName"-->
<!-- :value="item.customerId"-->
<!-- >-->
<!-- <span style="float: left">{{ item.companyName }}</span>-->
<!-- </el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<!-- </el-row>-->
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="10" class="el-col">
<el-form-item label="企业名称:" label-width="150px" prop="companyName">
<el-form-item label="企业名称:" label-width="150px" prop="ylqxzcrbarmc">
<el-input
size="small"
placeholder="请输入内容" disabled
v-model="inputQuery.companyName"
v-model="inputQuery.ylqxzcrbarmc"
@input="change()"
></el-input>
</el-form-item>
</el-col>
<el-col :span="10" class="el-col">
<el-form-item label="统一社会信用代码:" label-width="150px" prop="creditCode">
<el-form-item label="统一社会信用代码:" label-width="150px" prop="tyshxydm">
<el-input
size="small"
placeholder="请输入内容"
v-model="inputQuery.creditCode"
v-model="inputQuery.tyshxydm"
@input="change()" disabled
></el-input>
</el-form-item>
@ -118,10 +118,10 @@
<el-cascader
size="small"
:options="options" disabled
v-model="selectedOptions2"
v-model="selectedOptions"
placeholder="请选择生产地区"
style="width: 100%"
@change="handleChange2"
@change="handleChange"
>
</el-cascader>
</el-form-item>

Loading…
Cancel
Save