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