资质审核新增下级状态

ywj_dev
郑明梁 2 years ago
parent 816254861f
commit e47ef51771

@ -35,6 +35,13 @@
<el-table-column label="统一社会信用号" prop="creditNum"></el-table-column>
<el-table-column label="所属地区" prop="area"></el-table-column>
<el-table-column label="详细地址" prop="detailAddr" :show-overflow-tooltip="true"></el-table-column>
<el-table-column label="生产企业状态" prop="auditStatus" width="120">
<template slot-scope="scope">
<span v-if="scope.row.failCout==0 && scope.row.passCout==0"></span>
<span v-if="scope.row.failCout>0"></span>
<span v-if="scope.row.failCout==0 && scope.row.passCout>0"></span>
</template>
</el-table-column>
<el-table-column label="审核状态" prop="auditStatus" width="120">
<template slot-scope="scope">
<el-tag :type="(scope.row.auditStatus) | statusFilterType">
@ -131,6 +138,13 @@
<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="auditStatus" width="120">
<template slot-scope="scope">
<span v-if="scope.row.failCout==0 && scope.row.passCout==0"></span>
<span v-if="scope.row.failCout>0"></span>
<span v-if="scope.row.failCout==0 && scope.row.passCout>0"></span>
</template>
</el-table-column>
<el-table-column label="审核状态" prop="auditStatus" width="120">
<template slot-scope="scope">
<el-tag :type="(scope.row.auditStatus) | statusFilterType">
@ -412,6 +426,17 @@ export default {
};
return statusMap[status];
},
manufacturerStatusType(passCount,failCout) {
const statusMap = {
0: "warning",
1: "success",
2: "danger",
6: "warning",
3: "warning",
};
return statusMap[status];
},
statusFilterName(status) {
const statusMap = {
0: "禁用",
@ -444,6 +469,7 @@ export default {
},
getList() {
this.loading = true;
this.filterQuery.manufacturerStatus=1;
getSupComapnys(this.filterQuery)
.then((response) => {
console.log(response)
@ -536,6 +562,7 @@ export default {
},
getManufacturerList() {
this.manufacturerLoading = true;
this.filterManufacturerQuery.productStatus=1;
getCompanyList(this.filterManufacturerQuery)
.then((response) => {
this.manufacturerLoading = false;

@ -139,6 +139,7 @@
<el-table v-loading="certLoading" :data="certList" ref="certTable" style="width: 100%" border
highlight-current-row>
<el-table-column type="selection" width="55"></el-table-column>
<el-table-column type="index" label="序号" width="50"></el-table-column>
<el-table-column label="证书名称" prop="name"></el-table-column>
<el-table-column label="证书编号" prop="code"></el-table-column>

Loading…
Cancel
Save