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