|
|
|
@ -31,17 +31,41 @@
|
|
|
|
|
<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" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<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">
|
|
|
|
|
<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="area" width="180"></el-table-column>
|
|
|
|
|
<el-table-column label="详细地址" prop="detailAddr" :show-overflow-tooltip="true" width="180"></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>
|
|
|
|
|
|
|
|
|
|
<el-tag type="danger" v-if="scope.row.failCout==0 && scope.row.passCout==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>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="配送产品证书" prop="auditStatus" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag type="danger" v-if="scope.row.productFailCout==0 && scope.row.prouctPassCout==0">
|
|
|
|
|
未添加证书
|
|
|
|
|
</el-tag>
|
|
|
|
|
<el-tag type="warning" v-if="scope.row.productFailCout>0">
|
|
|
|
|
未全部审核
|
|
|
|
|
</el-tag>
|
|
|
|
|
<el-tag type="success" v-if="scope.row.productFailCout==0 && scope.row.prouctPassCout>0">
|
|
|
|
|
已全部审核
|
|
|
|
|
</el-tag>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="审核状态" prop="auditStatus" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag :type="(scope.row.auditStatus) | statusFilterType">
|
|
|
|
@ -138,11 +162,19 @@
|
|
|
|
|
<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">
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
|
|
<el-tag type="danger" v-if="scope.row.failCout==0 && scope.row.passCout==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>
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="审核状态" prop="auditStatus" width="120">
|
|
|
|
|