|
|
@ -7,12 +7,14 @@
|
|
|
|
<el-row>
|
|
|
|
<el-row>
|
|
|
|
<el-col span="6">
|
|
|
|
<el-col span="6">
|
|
|
|
<el-form-item label="配送企业名称:">
|
|
|
|
<el-form-item label="配送企业名称:">
|
|
|
|
<el-input v-model="filterQuery.companyName" style="width: 90%" placeholder="请输入配送企业名称" clearable></el-input>
|
|
|
|
<el-input v-model="filterQuery.companyName" style="width: 90%" placeholder="请输入配送企业名称"
|
|
|
|
|
|
|
|
clearable></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
<el-col span="6">
|
|
|
|
<el-col span="6">
|
|
|
|
<el-form-item label="统一社会信用号:">
|
|
|
|
<el-form-item label="统一社会信用号:">
|
|
|
|
<el-input v-model="filterQuery.creditNum" style="width: 90%" placeholder="请输入统一社会信用号" clearable></el-input>
|
|
|
|
<el-input v-model="filterQuery.creditNum" style="width: 90%" placeholder="请输入统一社会信用号"
|
|
|
|
|
|
|
|
clearable></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</el-row>
|
|
|
@ -28,7 +30,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row @row-click="supCompanyClick">
|
|
|
|
<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 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="companyName" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="统一社会信用号" prop="creditNum"></el-table-column>
|
|
|
|
<el-table-column label="统一社会信用号" prop="creditNum"></el-table-column>
|
|
|
@ -44,9 +47,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" width="180">
|
|
|
|
<el-table-column label="操作" width="180">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus ==6 || scope.row.auditStatus ==3" @click.native.stop="editCompany(scope.row)">审核</el-button>
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus ==6 || scope.row.auditStatus ==3"
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus !=6 && scope.row.auditStatus !=3" @click.native.stop="editCompany(scope.row)">详情</el-button>
|
|
|
|
@click.native.stop="editCompany(scope.row)">审核
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus !=6 && scope.row.auditStatus !=3" @click.native="printSupCertPdf(scope.row)">打印</el-button>
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus !=6 && scope.row.auditStatus !=3"
|
|
|
|
|
|
|
|
@click.native.stop="editCompany(scope.row)">详情
|
|
|
|
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus !=6 && scope.row.auditStatus !=3"
|
|
|
|
|
|
|
|
@click.native="printSupCertPdf(scope.row)">打印
|
|
|
|
|
|
|
|
</el-button>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</el-table>
|
|
|
@ -84,12 +93,14 @@
|
|
|
|
<el-row>
|
|
|
|
<el-row>
|
|
|
|
<el-col :span="6">
|
|
|
|
<el-col :span="6">
|
|
|
|
<el-form-item label="生产企业名称">
|
|
|
|
<el-form-item label="生产企业名称">
|
|
|
|
<el-input v-model="filterManufacturerQuery.companyName" style="width: 90%" placeholder="请输入生产企业名称" clearable></el-input>
|
|
|
|
<el-input v-model="filterManufacturerQuery.companyName" style="width: 90%" placeholder="请输入生产企业名称"
|
|
|
|
|
|
|
|
clearable></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="6">
|
|
|
|
<el-col :span="6">
|
|
|
|
<el-form-item label="统一社会信用号">
|
|
|
|
<el-form-item label="统一社会信用号">
|
|
|
|
<el-input v-model="filterManufacturerQuery.creditCode" style="width: 90%" placeholder="请输入统一社会信用号" clearable></el-input>
|
|
|
|
<el-input v-model="filterManufacturerQuery.creditCode" style="width: 90%" placeholder="请输入统一社会信用号"
|
|
|
|
|
|
|
|
clearable></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</el-row>
|
|
|
@ -105,7 +116,8 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loadManufacturerLoading" :data="manufacturerList" style="width: 100%" border highlight-current-row @row-click="supManufacturerClick">
|
|
|
|
<el-table v-loading="loadManufacturerLoading" :data="manufacturerList" style="width: 100%" border
|
|
|
|
|
|
|
|
highlight-current-row @row-click="supManufacturerClick">
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
<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="companyName" width="200" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="社会信用号" prop="creditCode"></el-table-column>
|
|
|
|
<el-table-column label="社会信用号" prop="creditCode"></el-table-column>
|
|
|
@ -127,9 +139,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" width="180">
|
|
|
|
<el-table-column label="操作" width="180">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus ==6 || scope.row.auditStatus ==3" @click.native.stop="addInfoDialog(scope.row)">审核</el-button>
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus ==6 || scope.row.auditStatus ==3"
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus !=6 && scope.row.auditStatus !=3" @click.native.stop="addInfoDialog(scope.row)">详情</el-button>
|
|
|
|
@click.native.stop="addInfoDialog(scope.row)">审核
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus !=6 && scope.row.auditStatus !=3" @click.native="printSupCertManufacturerPdf(scope.row)">打印</el-button>
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus !=6 && scope.row.auditStatus !=3"
|
|
|
|
|
|
|
|
@click.native.stop="addInfoDialog(scope.row)">详情
|
|
|
|
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus !=6 && scope.row.auditStatus !=3"
|
|
|
|
|
|
|
|
@click.native="printSupCertManufacturerPdf(scope.row)">打印
|
|
|
|
|
|
|
|
</el-button>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</el-table>
|
|
|
@ -167,17 +185,20 @@
|
|
|
|
<el-row style="width: 100%">
|
|
|
|
<el-row style="width: 100%">
|
|
|
|
<el-col :span="6">
|
|
|
|
<el-col :span="6">
|
|
|
|
<el-form-item label="物资名称:">
|
|
|
|
<el-form-item label="物资名称:">
|
|
|
|
<el-input v-model="registrationQuery.recordProductName" style="width: 90%" clearable="true" placeholder="请输入物资名称"></el-input>
|
|
|
|
<el-input v-model="registrationQuery.recordProductName" style="width: 90%" clearable="true"
|
|
|
|
|
|
|
|
placeholder="请输入物资名称"></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="6">
|
|
|
|
<el-col :span="6">
|
|
|
|
<el-form-item label="注册备案号:">
|
|
|
|
<el-form-item label="注册备案号:">
|
|
|
|
<el-input v-model="registrationQuery.recordCode" style="width: 90%" clearable="true" placeholder="请输入注册备案号"></el-input>
|
|
|
|
<el-input v-model="registrationQuery.recordCode" style="width: 90%" clearable="true"
|
|
|
|
|
|
|
|
placeholder="请输入注册备案号"></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="6">
|
|
|
|
<el-col :span="6">
|
|
|
|
<el-form-item label="注册备案人:">
|
|
|
|
<el-form-item label="注册备案人:">
|
|
|
|
<el-input v-model="registrationQuery.recordPeopleName" style="width: 90%" clearable="true" placeholder="请输入注册备案人"></el-input>
|
|
|
|
<el-input v-model="registrationQuery.recordPeopleName" style="width: 90%" clearable="true"
|
|
|
|
|
|
|
|
placeholder="请输入注册备案人"></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</el-row>
|
|
|
@ -192,9 +213,11 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="registrationLoading" :data="registrationList" border highlight-current-row style="width: 100%">
|
|
|
|
<el-table v-loading="registrationLoading" :data="registrationList" border highlight-current-row
|
|
|
|
|
|
|
|
style="width: 100%">
|
|
|
|
<el-table-column type="index" label="序号" width="50"></el-table-column>
|
|
|
|
<el-table-column type="index" label="序号" width="50"></el-table-column>
|
|
|
|
<el-table-column label="物资名称" prop="recordProductName" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="物资名称" prop="recordProductName" show-overflow-tooltip></el-table-column>
|
|
|
|
|
|
|
|
<el-table-column label="规格型号" prop="ggxh" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="注册/备案号" prop="recordCode" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="注册/备案号" prop="recordCode" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="注册/备案人名称" prop="recordPeopleName" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="注册/备案人名称" prop="recordPeopleName" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="生产企业" prop="manufacturerName" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="生产企业" prop="manufacturerName" show-overflow-tooltip></el-table-column>
|
|
|
@ -210,9 +233,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" width="180">
|
|
|
|
<el-table-column label="操作" width="180">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus ==6 || scope.row.auditStatus ==3" @click.native.stop="registrationDialog(scope.row)">审核</el-button>
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus ==6 || scope.row.auditStatus ==3"
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus !=6 && scope.row.auditStatus !=3" @click.native.stop="registrationDialog(scope.row)">详情</el-button>
|
|
|
|
@click.native.stop="registrationDialog(scope.row)">审核
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus !=6 && scope.row.auditStatus !=3" @click.native="printSupCertProductionPdf(scope.row)">打印</el-button>
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus !=6 && scope.row.auditStatus !=3"
|
|
|
|
|
|
|
|
@click.native.stop="registrationDialog(scope.row)">详情
|
|
|
|
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus !=6 && scope.row.auditStatus !=3"
|
|
|
|
|
|
|
|
@click.native="printSupCertProductionPdf(scope.row)">打印
|
|
|
|
|
|
|
|
</el-button>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</el-table>
|
|
|
@ -247,7 +276,15 @@
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
import {getSupComapnys, delSupComapnys, printSupCert, verifyTemplateFile,filterCompanyCertIdList,printSupCertManufacturer,printSupCertProduction} from "@/api/purchase/supCompany";
|
|
|
|
import {
|
|
|
|
|
|
|
|
getSupComapnys,
|
|
|
|
|
|
|
|
delSupComapnys,
|
|
|
|
|
|
|
|
printSupCert,
|
|
|
|
|
|
|
|
verifyTemplateFile,
|
|
|
|
|
|
|
|
filterCompanyCertIdList,
|
|
|
|
|
|
|
|
printSupCertManufacturer,
|
|
|
|
|
|
|
|
printSupCertProduction
|
|
|
|
|
|
|
|
} from "@/api/purchase/supCompany";
|
|
|
|
import supCompanyEditAdudit from "@/views/purchase/company/supCompanyAduditDialog";
|
|
|
|
import supCompanyEditAdudit from "@/views/purchase/company/supCompanyAduditDialog";
|
|
|
|
import supManufacturerAuditDialog from "@/views/purchase/manufacturer/supManufacturerAuditDialog";
|
|
|
|
import supManufacturerAuditDialog from "@/views/purchase/manufacturer/supManufacturerAuditDialog";
|
|
|
|
import {deleteCompany, getCompanyList} from "@/api/purchase/supManufacturer";
|
|
|
|
import {deleteCompany, getCompanyList} from "@/api/purchase/supManufacturer";
|
|
|
@ -258,7 +295,7 @@ export default {
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
/**-----------------配送企业资质----------------------------*/
|
|
|
|
/**-----------------配送企业资质----------------------------*/
|
|
|
|
showSearch:true,
|
|
|
|
showSearch: true,
|
|
|
|
filterQuery: {
|
|
|
|
filterQuery: {
|
|
|
|
companyName: "",
|
|
|
|
companyName: "",
|
|
|
|
checkType: "",
|
|
|
|
checkType: "",
|
|
|
@ -287,7 +324,7 @@ export default {
|
|
|
|
editType: 0, //0:新增,1:编辑
|
|
|
|
editType: 0, //0:新增,1:编辑
|
|
|
|
|
|
|
|
|
|
|
|
/**-----------------生产企业资质----------------------------*/
|
|
|
|
/**-----------------生产企业资质----------------------------*/
|
|
|
|
showSearch1:true,
|
|
|
|
showSearch1: true,
|
|
|
|
filterManufacturerQuery: {
|
|
|
|
filterManufacturerQuery: {
|
|
|
|
customerId: null,
|
|
|
|
customerId: null,
|
|
|
|
companyName: "",
|
|
|
|
companyName: "",
|
|
|
@ -324,7 +361,7 @@ export default {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**----------------------------配送产品资质--------------------------------*/
|
|
|
|
/**----------------------------配送产品资质--------------------------------*/
|
|
|
|
showSearch2:true,
|
|
|
|
showSearch2: true,
|
|
|
|
productLoading: false,
|
|
|
|
productLoading: false,
|
|
|
|
value: "",
|
|
|
|
value: "",
|
|
|
|
registrationVisible: false,
|
|
|
|
registrationVisible: false,
|
|
|
@ -596,12 +633,12 @@ export default {
|
|
|
|
verifyTemplateFile(query).then((res) => {
|
|
|
|
verifyTemplateFile(query).then((res) => {
|
|
|
|
if (res.code === 20000) {
|
|
|
|
if (res.code === 20000) {
|
|
|
|
//查询全部详情id
|
|
|
|
//查询全部详情id
|
|
|
|
var supCertQuery={
|
|
|
|
var supCertQuery = {
|
|
|
|
customerId:row.customerId,
|
|
|
|
customerId: row.customerId,
|
|
|
|
type:1
|
|
|
|
type: 1
|
|
|
|
};
|
|
|
|
};
|
|
|
|
filterCompanyCertIdList(supCertQuery).then((req) => {
|
|
|
|
filterCompanyCertIdList(supCertQuery).then((req) => {
|
|
|
|
if(req.code===20000){
|
|
|
|
if (req.code === 20000) {
|
|
|
|
let printParams = {
|
|
|
|
let printParams = {
|
|
|
|
templateId: res.data,
|
|
|
|
templateId: res.data,
|
|
|
|
ids: req.data,
|
|
|
|
ids: req.data,
|
|
|
@ -636,13 +673,13 @@ export default {
|
|
|
|
verifyTemplateFile(query).then((res) => {
|
|
|
|
verifyTemplateFile(query).then((res) => {
|
|
|
|
if (res.code === 20000) {
|
|
|
|
if (res.code === 20000) {
|
|
|
|
//查询全部详情id
|
|
|
|
//查询全部详情id
|
|
|
|
var supCertQuery={
|
|
|
|
var supCertQuery = {
|
|
|
|
customerId:row.customerId,
|
|
|
|
customerId: row.customerId,
|
|
|
|
manufacturerIdFk:row.manufacturerId,
|
|
|
|
manufacturerIdFk: row.manufacturerId,
|
|
|
|
type:2
|
|
|
|
type: 2
|
|
|
|
};
|
|
|
|
};
|
|
|
|
filterCompanyCertIdList(supCertQuery).then((req) => {
|
|
|
|
filterCompanyCertIdList(supCertQuery).then((req) => {
|
|
|
|
if(req.code===20000){
|
|
|
|
if (req.code === 20000) {
|
|
|
|
let printParams = {
|
|
|
|
let printParams = {
|
|
|
|
templateId: res.data,
|
|
|
|
templateId: res.data,
|
|
|
|
ids: req.data,
|
|
|
|
ids: req.data,
|
|
|
@ -678,14 +715,14 @@ export default {
|
|
|
|
verifyTemplateFile(query).then((res) => {
|
|
|
|
verifyTemplateFile(query).then((res) => {
|
|
|
|
if (res.code === 20000) {
|
|
|
|
if (res.code === 20000) {
|
|
|
|
//查询全部详情id
|
|
|
|
//查询全部详情id
|
|
|
|
var supCertQuery={
|
|
|
|
var supCertQuery = {
|
|
|
|
customerId:row.customerId,
|
|
|
|
customerId: row.customerId,
|
|
|
|
manufacturerIdFk:row.manufacturerIdFk,
|
|
|
|
manufacturerIdFk: row.manufacturerIdFk,
|
|
|
|
productIdFk:row.productId,
|
|
|
|
productIdFk: row.productId,
|
|
|
|
type:3
|
|
|
|
type: 3
|
|
|
|
};
|
|
|
|
};
|
|
|
|
filterCompanyCertIdList(supCertQuery).then((req) => {
|
|
|
|
filterCompanyCertIdList(supCertQuery).then((req) => {
|
|
|
|
if(req.code===20000){
|
|
|
|
if (req.code === 20000) {
|
|
|
|
let printParams = {
|
|
|
|
let printParams = {
|
|
|
|
templateId: res.data,
|
|
|
|
templateId: res.data,
|
|
|
|
ids: req.data,
|
|
|
|
ids: req.data,
|
|
|
|