|
|
|
@ -3,19 +3,32 @@
|
|
|
|
|
<el-card class="el-card">
|
|
|
|
|
<el-form :model="query" label-width="100px" class="query-form" size="mini" v-show="showSearch">
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col span="6">
|
|
|
|
|
<el-form-item label="搜索:">
|
|
|
|
|
<el-input v-model="query.key" placeholder="搜索" style="width: 90%" clearable="true"></el-input>
|
|
|
|
|
<el-col type="flex" :span="8">
|
|
|
|
|
<el-form-item label="注册企业名称:">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="query.companyName"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
placeholder="注册企业名称:"
|
|
|
|
|
clearable
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col span="6">
|
|
|
|
|
<el-col type="flex" :span="8">
|
|
|
|
|
<el-form-item label="往来单位名称:">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="query.name"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
placeholder="往来单位名称"
|
|
|
|
|
clearable
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col span="8">
|
|
|
|
|
<el-form-item label="往来单位类型:">
|
|
|
|
|
<el-select v-model="query.corpType" style="width: 90%" placeholder="请选择往来单位类型">
|
|
|
|
|
<el-option label="全部" value=""></el-option>
|
|
|
|
|
<el-option label="客户" value="1"></el-option>
|
|
|
|
|
<el-option label="供应商" value="2"></el-option>
|
|
|
|
|
<el-option label="特殊科室" value="3"></el-option>
|
|
|
|
|
<el-option label="特殊往来" value="4"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -28,31 +41,33 @@
|
|
|
|
|
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset">重置</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="search">查询</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-plus" @click.native="handleForm(null, null)"
|
|
|
|
|
:disabled="!configParms.basicCorp">新增
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-bottom-right" @click="intentDetail">选入往来单位信息</el-button>
|
|
|
|
|
<!-- <el-button type="primary" icon="el-icon-plus" @click.native="handleForm(null, null)"-->
|
|
|
|
|
<!-- :disabled="!configParms.basicCorp">新增-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<!-- <el-button type="primary" icon="el-icon-plus" @click.native="handleForm(null, null)">新增</el-button>-->
|
|
|
|
|
<!-- <el-button type="primary" icon="el-icon-bottom-right" @click="intentDetail">选入往来单位信息</el-button>-->
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</div>
|
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row
|
|
|
|
|
@selection-change="handleSelectionChange">
|
|
|
|
|
<el-table-column type="selection" width="55"></el-table-column>
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column label="往来单位编码" prop="erpId" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="第三方主系统ID" prop="thirdId" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="名称" prop="name" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table v-loading="loading" :data="list" border highlight-current-row>
|
|
|
|
|
<el-table-column label="序号" type="index" width="50"></el-table-column>
|
|
|
|
|
<el-table-column label="注册企业" prop="companyName" width="230"></el-table-column>
|
|
|
|
|
<el-table-column label="往来单位" prop="name" width="230"></el-table-column>
|
|
|
|
|
<el-table-column label="往来单位编码" prop="erpId" width="120" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="第三方主系统ID" prop="thirdId" width="120" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<!-- <el-table-column label="名称" prop="name" show-overflow-tooltip></el-table-column>-->
|
|
|
|
|
<el-table-column label="简写" prop="spell" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="社会信用号" prop="creditNo" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="地址" prop="addr" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="操作" width="120">
|
|
|
|
|
<el-table-column label="社会信用号" prop="creditNo" width="230" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="地址" prop="addr" width="230" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="操作" width="180" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" @click.native="handleForm(scope.$index, scope.row)">编辑</el-button>
|
|
|
|
|
<el-button type="text" :disabled="!configParms.basicCorp" @click.native.stop="deleteDialog(scope.row)">
|
|
|
|
|
删除
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="text" @click.native="handCert(scope.$index, scope.row)">资质证书</el-button>
|
|
|
|
|
<!-- <el-button type="text" @click.native.stop="deleteDialog(scope.row)">-->
|
|
|
|
|
<!-- 删除-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
@ -89,8 +104,6 @@
|
|
|
|
|
<selectSingleUnit v-on:cancelDialog="cancelDialog" :corpData="corpData"
|
|
|
|
|
:defaultSys="defaultSys"></selectSingleUnit>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--表单-->
|
|
|
|
|
<el-dialog
|
|
|
|
|
:title="formMap[formName]"
|
|
|
|
@ -98,95 +111,185 @@
|
|
|
|
|
:before-close="hideForm"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
width="60%"
|
|
|
|
|
width="80%"
|
|
|
|
|
top="5vh"
|
|
|
|
|
>
|
|
|
|
|
<el-table :data="sysList" style="width: 100%" border v-if="formName=='update'">
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column label="第三方系统名称" prop="sysName" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="第三方往来单位ID" prop="thirdId" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="第三方往来单位名称" prop="thirdName" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="操作">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" size="small" @click="intentSelect(scope.row)" :disabled="!configParms.basicCorp">
|
|
|
|
|
关联
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="text" size="small" @click.native.stop="removeErp(scope.row)"
|
|
|
|
|
:disabled="scope.row.thirdId=='' ||scope.row.thirdId==null || !configParms.basicCorp">解绑
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<el-form :model="editQuery" :rules="formRules" style="margin-top: 20px" label-width="120px" ref="dataForm">
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
<el-col :span="12" type="flex">
|
|
|
|
|
<el-form-item label="往来单位名称" prop="name">
|
|
|
|
|
<el-input v-model="editQuery.name" size="small" style="width: 90%" auto-complete="off" @input="change()"
|
|
|
|
|
splaceholder="请输入往来单位名称"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" type="flex">
|
|
|
|
|
<el-form-item label="往来单位编码" prop="erpId">
|
|
|
|
|
<el-input v-model="editQuery.erpId" style="width: 90%" auto-complete="off" disabled="true"
|
|
|
|
|
splaceholder="请输入往来单位编码"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
<el-col :span="12" type="flex">
|
|
|
|
|
<el-form-item label="社会信用号" prop="creditNo">
|
|
|
|
|
<el-input v-model="editQuery.creditNo" style="width: 90%" splaceholder="请输入社会信用号"
|
|
|
|
|
auto-complete="off"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" type="flex">
|
|
|
|
|
<el-form-item label="联系人" prop="contact">
|
|
|
|
|
<el-input v-model="editQuery.contact" splaceholder="请输入联系人" style="width: 90%"
|
|
|
|
|
auto-complete="off"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :type="flex">
|
|
|
|
|
<el-col :span="12" type="flex">
|
|
|
|
|
<el-form-item label="地址" prop="addr">
|
|
|
|
|
<el-input type="" v-model="editQuery.addr" splaceholder="请输入地址" style="width: 90%"
|
|
|
|
|
auto-complete="off"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" type="flex">
|
|
|
|
|
<el-form-item label="联系电话" prop="mobile">
|
|
|
|
|
<el-input v-model="editQuery.mobile" splaceholder="请输入联系电话" auto-complete="off"
|
|
|
|
|
style="width: 90%"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :type="flex">
|
|
|
|
|
<el-col :span="12" type="flex">
|
|
|
|
|
<el-form-item label="往来单位类型" prop="corpType">
|
|
|
|
|
<el-select v-model="editQuery.corpType" style="width: 90%" placeholder="请选择往来单位类型">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in corpTypeList"
|
|
|
|
|
:key="item.value"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
:value="item.value">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" type="flex">
|
|
|
|
|
<el-form-item label="拼音码" prop="spell">
|
|
|
|
|
<el-input v-model="editQuery.spell" placeholder="请输入拼音码" auto-complete="off"
|
|
|
|
|
style="width: 90%"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-form :model="editQuery" :rules="formRules" style="margin-top: -30px" label-width="150px" ref="dataForm">
|
|
|
|
|
<el-card class="el-card">
|
|
|
|
|
<div style="clear: both;height: 60px;text-align: right;">
|
|
|
|
|
|
|
|
|
|
<el-button type="primary" @click.native="formSubmit()" :loading="formLoading">提交</el-button>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
<el-col :span="12" type="flex">
|
|
|
|
|
<el-form-item label="往来单位名称" prop="name">
|
|
|
|
|
<el-input v-model="editQuery.name" size="small" style="width: 90%" auto-complete="off" @input="change()"
|
|
|
|
|
splaceholder="请输入往来单位名称"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" type="flex">
|
|
|
|
|
<el-form-item label="往来单位编码" prop="erpId">
|
|
|
|
|
<el-input v-model="editQuery.erpId" style="width: 90%" auto-complete="off" disabled="true"
|
|
|
|
|
splaceholder="请输入往来单位编码"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
<el-col :span="12" type="flex">
|
|
|
|
|
<el-form-item label="社会信用号" prop="creditNo">
|
|
|
|
|
<el-input v-model="editQuery.creditNo" style="width: 90%" splaceholder="请输入社会信用号"
|
|
|
|
|
auto-complete="off"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" type="flex">
|
|
|
|
|
<el-form-item label="联系人" prop="contact">
|
|
|
|
|
<el-input v-model="editQuery.contact" splaceholder="请输入联系人" style="width: 90%"
|
|
|
|
|
auto-complete="off"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :type="flex">
|
|
|
|
|
<el-col :span="12" type="flex">
|
|
|
|
|
<el-form-item label="地址" prop="addr">
|
|
|
|
|
<el-input type="" v-model="editQuery.addr" splaceholder="请输入地址" style="width: 90%"
|
|
|
|
|
auto-complete="off"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" type="flex">
|
|
|
|
|
<el-form-item label="联系电话" prop="mobile">
|
|
|
|
|
<el-input v-model="editQuery.mobile" splaceholder="请输入联系电话" auto-complete="off"
|
|
|
|
|
style="width: 90%"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :type="flex">
|
|
|
|
|
<el-col :span="12" type="flex">
|
|
|
|
|
<el-form-item label="往来单位类型" prop="corpType">
|
|
|
|
|
<el-select v-model="editQuery.corpType" style="width: 90%" placeholder="请选择往来单位类型">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in corpTypeList"
|
|
|
|
|
:key="item.value"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
:value="item.value">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" type="flex">
|
|
|
|
|
<el-form-item label="拼音码" prop="spell">
|
|
|
|
|
<el-input v-model="editQuery.spell" placeholder="请输入拼音码" auto-complete="off"
|
|
|
|
|
style="width: 90%"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-card>
|
|
|
|
|
<!--分割线-------------------------------------------------------->
|
|
|
|
|
|
|
|
|
|
</el-form>
|
|
|
|
|
<div style='text-align: center; margin-bottom: 10px;'>
|
|
|
|
|
<el-button @click.native="hideForm">取消</el-button>
|
|
|
|
|
<el-button type="primary" @click.native="formSubmit()" :loading="formLoading"
|
|
|
|
|
:disabled="!configParms.basicCorp">提交
|
|
|
|
|
</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
<el-card class="el-card" v-if="this.formName == 'cert'">
|
|
|
|
|
<div style="float:right ">
|
|
|
|
|
<!-- <el-button type="primary" size="mini" icon="search" @click="selectCert"-->
|
|
|
|
|
<!-- >选入资质证书-->
|
|
|
|
|
<!-- </el-button-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
size="mini"
|
|
|
|
|
icon="search"
|
|
|
|
|
@click="addCert()"
|
|
|
|
|
>添加资质证书
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
<el-table v-loading="certLoading" :data="certList" style="width: 100%;margin-top: 40px" border
|
|
|
|
|
highlight-current-row>
|
|
|
|
|
<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>
|
|
|
|
|
<el-table-column label="生效期" prop="vailDate"></el-table-column>
|
|
|
|
|
<el-table-column label="失效期" prop="expireDate"></el-table-column>
|
|
|
|
|
<el-table-column label="审核状态" prop="auditStatus" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag :type="(scope.row.auditStatus) | statusFilterType">
|
|
|
|
|
{{ checkFlag[scope.row.auditStatus] }}
|
|
|
|
|
</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="状态" prop="status" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag :type="(scope.row.status) | statusType">
|
|
|
|
|
{{ statusFlag[scope.row.status] }}
|
|
|
|
|
</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="备注" prop="remark"></el-table-column>
|
|
|
|
|
<el-table-column label="操作" width="150">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native="addCert(scope.row)"
|
|
|
|
|
>编辑
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button type="text" size="mini" @click.native="showImgViewer(scope.row)">预览</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
:disabled="scope.row.auditStatus === 1"
|
|
|
|
|
@click.native="deleteCompanyCert(scope.row)"
|
|
|
|
|
>删除
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
v-if="scope.row.auditStatus === 2"
|
|
|
|
|
@click.native.stop="rejectInfo(scope.row)"
|
|
|
|
|
>说明
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<el-image-viewer v-if="imgViewerVisible" style="z-index:9999" :on-close="closeImgViewer"
|
|
|
|
|
:url-list="imgList"/>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="certTotal>0"
|
|
|
|
|
:total="certTotal"
|
|
|
|
|
:page.sync="certQuery.page"
|
|
|
|
|
:limit.sync="certQuery.limit"
|
|
|
|
|
@pagination="certHandleCurrentChange"
|
|
|
|
|
></pagination>
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="添加资质证书"
|
|
|
|
|
:visible.sync="addCertVisible"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
width="70%"
|
|
|
|
|
v-if="addCertVisible"
|
|
|
|
|
append-to-body
|
|
|
|
|
@close='closeLocalDialog'
|
|
|
|
|
>
|
|
|
|
|
<companyAddCert
|
|
|
|
|
:closeDialog="closeLocalDialog"
|
|
|
|
|
:inputQuery="inputQuery"
|
|
|
|
|
:addType="addType"
|
|
|
|
|
:editTye="editTye"
|
|
|
|
|
></companyAddCert>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <div style='text-align: center; margin-bottom: 10px;'>-->
|
|
|
|
|
<!-- <el-button @click.native="hideForm">取消</el-button>-->
|
|
|
|
|
<!-- <!– <el-button type="primary" @click.native="formSubmit()" :loading="formLoading"–>-->
|
|
|
|
|
<!-- <!– :disabled="!configParms.basicCorp">提交–>-->
|
|
|
|
|
<!-- <!– </el-button>–>-->
|
|
|
|
|
<!-- <el-button type="primary" @click.native="formSubmit()" :loading="formLoading">提交</el-button>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</el-card>
|
|
|
|
|
</div>
|
|
|
|
@ -205,17 +308,73 @@ import selectUnit from "./corpRelevance";
|
|
|
|
|
import selectSingleUnit from "./corpSingleRelevance";
|
|
|
|
|
import {getBasicThirdSys} from "@/api/basic/basicThirdSys";
|
|
|
|
|
import {findConfig} from "@/api/sync/spsSyncStatus";
|
|
|
|
|
import {getSupComapnys, previewImage} from "@/api/purchase/supCompany";
|
|
|
|
|
import {deleteCompanyCert, filterCompanyCert} from "@/api/purchase/companyCert";
|
|
|
|
|
import companyAddCert from "@/views/purchase/cert/supCertAddDialog.vue";
|
|
|
|
|
import {getUUID} from "@/utils/strUtil";
|
|
|
|
|
import {getCompanyList} from "@/api/purchase/supManufacturer";
|
|
|
|
|
|
|
|
|
|
var pinyin = require("pinyin");
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
props: {
|
|
|
|
|
closeRegistrationDialog: {
|
|
|
|
|
type: Function,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
inputQuery: {
|
|
|
|
|
type: Object,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
editType: {
|
|
|
|
|
type: Object,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
currentManufacturer: {
|
|
|
|
|
type: Object,
|
|
|
|
|
required: true,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
pmQuery: {
|
|
|
|
|
customerId: null,
|
|
|
|
|
companyIdFk: null,
|
|
|
|
|
companyName: null,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
},
|
|
|
|
|
cuStatus: 0,
|
|
|
|
|
imgViewerVisible: false,
|
|
|
|
|
imgList: [],
|
|
|
|
|
certTotal: 0,
|
|
|
|
|
addCertVisible: false,
|
|
|
|
|
addType: "4", //证书类型:1:供应商;2.生产企业;3.产品品种 4:往来单位
|
|
|
|
|
editTye: 1,
|
|
|
|
|
certQuery: {
|
|
|
|
|
customerId: null,
|
|
|
|
|
companyIdFk: null,
|
|
|
|
|
manufacturerIdFk: null,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 20
|
|
|
|
|
},
|
|
|
|
|
query: {
|
|
|
|
|
key: "",
|
|
|
|
|
corpType: "2",
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 20,
|
|
|
|
|
},
|
|
|
|
|
checkFlag: {
|
|
|
|
|
0: "草稿",
|
|
|
|
|
1: "已通过",
|
|
|
|
|
2: "已拒绝",
|
|
|
|
|
3: "变更未审核",
|
|
|
|
|
6: "未审核",
|
|
|
|
|
},
|
|
|
|
|
statusFlag: {
|
|
|
|
|
0: "有效",
|
|
|
|
|
1: "失效",
|
|
|
|
|
},
|
|
|
|
|
showSearch: true,
|
|
|
|
|
erpIdColumn: false,
|
|
|
|
|
thirdIdColumn: false,
|
|
|
|
@ -237,7 +396,8 @@ export default {
|
|
|
|
|
formName: null,
|
|
|
|
|
formMap: {
|
|
|
|
|
add: "新增",
|
|
|
|
|
update: "编辑"
|
|
|
|
|
update: "编辑",
|
|
|
|
|
cert: "添加资质证书"
|
|
|
|
|
},
|
|
|
|
|
formLoading: false,
|
|
|
|
|
formVisible: false,
|
|
|
|
@ -256,16 +416,19 @@ export default {
|
|
|
|
|
value: 2,
|
|
|
|
|
label: "供应商"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 3,
|
|
|
|
|
label: "特殊科室"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 4,
|
|
|
|
|
label: "特殊往来"
|
|
|
|
|
}
|
|
|
|
|
// {
|
|
|
|
|
// value: 3,
|
|
|
|
|
// // label: "特殊科室"
|
|
|
|
|
// label: "内部科室"
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// value: 4,
|
|
|
|
|
// label: "特殊往来"
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
],
|
|
|
|
|
certLoading: false,
|
|
|
|
|
certList: [],
|
|
|
|
|
formRules: {
|
|
|
|
|
name: [
|
|
|
|
|
{required: true, message: "请输入名称", trigger: "blur"}
|
|
|
|
@ -275,6 +438,9 @@ export default {
|
|
|
|
|
// ],
|
|
|
|
|
creditNo: [
|
|
|
|
|
{required: true, message: "请输入社会信用号", trigger: "blur"}
|
|
|
|
|
],
|
|
|
|
|
corpType: [
|
|
|
|
|
{required: true, message: "请选择往来单位类型", trigger: "blur"}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
spellUpdate: false,
|
|
|
|
@ -289,17 +455,36 @@ export default {
|
|
|
|
|
thirdSys: [],
|
|
|
|
|
thirdSysFk: null,
|
|
|
|
|
defaultSys: null,
|
|
|
|
|
companyIdFk: null,
|
|
|
|
|
configParms: {},
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
|
//添加资质证书
|
|
|
|
|
addCert(row) {
|
|
|
|
|
console.log(this.row);
|
|
|
|
|
if (this.$isNotBlank(row)) {
|
|
|
|
|
this.formName = 2
|
|
|
|
|
|
|
|
|
|
this.inputQuery = row;
|
|
|
|
|
this.editTye = 2;
|
|
|
|
|
this.inputQuery.companyIdFk=row.companyIdFk;
|
|
|
|
|
console.log("编辑"+this.inputQuery);
|
|
|
|
|
} else {
|
|
|
|
|
this.inputQuery=this.list;
|
|
|
|
|
this.inputQuery.companyIdFk=this.curProductQuery.companyIdFk;
|
|
|
|
|
}
|
|
|
|
|
this.addCertVisible = true;
|
|
|
|
|
},
|
|
|
|
|
onReset() {
|
|
|
|
|
this.$router.push({
|
|
|
|
|
path: "",
|
|
|
|
|
});
|
|
|
|
|
this.query = {
|
|
|
|
|
key: "",
|
|
|
|
|
corpType: "2",
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 20,
|
|
|
|
|
};
|
|
|
|
@ -309,13 +494,42 @@ export default {
|
|
|
|
|
this.query.page = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
findPMMethod(key) {
|
|
|
|
|
this.fromPMOptions = [];
|
|
|
|
|
this.pmQuery.companyName = key;
|
|
|
|
|
getCompanyList(this.pmQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.fromPMOptions = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.fromPMOptions = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
findMethod(query) {
|
|
|
|
|
this.fromOptions = [];
|
|
|
|
|
let cQuery = {
|
|
|
|
|
companyName: query,
|
|
|
|
|
};
|
|
|
|
|
getSupComapnys(cQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.fromOptions = response.data.list || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.erpIdColumn = false;
|
|
|
|
|
this.thirdIdColumn = false;
|
|
|
|
|
getBasicUnitMaintains(this.query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.getSystemParamConfig();
|
|
|
|
|
//this.getSystemParamConfig();
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
@ -345,6 +559,96 @@ export default {
|
|
|
|
|
this.getList();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
closeLocalDialog() {
|
|
|
|
|
this.addCertVisible = false;
|
|
|
|
|
this.selectCertVisible = false;
|
|
|
|
|
this.getCompanyCertList();
|
|
|
|
|
},
|
|
|
|
|
certHandleCurrentChange(val) {
|
|
|
|
|
this.certQuery.page = val.page;
|
|
|
|
|
this.getCompanyCertList();
|
|
|
|
|
},
|
|
|
|
|
getCompanyCertList() {
|
|
|
|
|
this.certLoading = true;
|
|
|
|
|
this.certQuery.companyIdFk = this.curProductQuery.companyIdFk;
|
|
|
|
|
this.certQuery.type=4;
|
|
|
|
|
// this.certQuery.manufacturerIdFk = this.inputQuery.manufacturerIdFk;
|
|
|
|
|
// this.certQuery.productIdFk = this.inputQuery.productId;
|
|
|
|
|
filterCompanyCert(this.certQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.certLoading = false;
|
|
|
|
|
this.certList = response.data.list || [];
|
|
|
|
|
this.certTotal = response.data.total
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.certLoading = false;
|
|
|
|
|
this.certList = [];
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
closeImgViewer() {
|
|
|
|
|
this.imgViewerVisible = false;
|
|
|
|
|
const m = (e) => {
|
|
|
|
|
e.preventDefault()
|
|
|
|
|
};
|
|
|
|
|
document.body.style.overflow = 'auto';
|
|
|
|
|
document.removeEventListener("touchmove", m, true);
|
|
|
|
|
},
|
|
|
|
|
rejectInfo(row) {
|
|
|
|
|
this.$confirm(row.auditComment, "拒绝说明", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
type: "warning",
|
|
|
|
|
showCancelButton: false,
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
deleteCompanyCert(row) {
|
|
|
|
|
this.$confirm("是否删除?", "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
}).then(() => {
|
|
|
|
|
this.certLoading = true;
|
|
|
|
|
let tquery = {
|
|
|
|
|
id: row.id,
|
|
|
|
|
filePath: row.filePath,
|
|
|
|
|
};
|
|
|
|
|
deleteCompanyCert(tquery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.certLoading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.getCompanyCertList();
|
|
|
|
|
this.$message({
|
|
|
|
|
type: "success",
|
|
|
|
|
message: "删除成功!",
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.certLoading = false;
|
|
|
|
|
});
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
showImgViewer(row) {
|
|
|
|
|
this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name=";
|
|
|
|
|
this.imgList = [];
|
|
|
|
|
previewImage({imageUrl: row.filePath, certFileUrl: this.certFileUrl}).then(response => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.imgList=response.data;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
this.imgViewerVisible = true;
|
|
|
|
|
const m = (e) => {
|
|
|
|
|
e.preventDefault()
|
|
|
|
|
};
|
|
|
|
|
document.body.style.overflow = 'hidden';
|
|
|
|
|
document.addEventListener("touchmove", m, false); // 禁止页面滑动
|
|
|
|
|
},
|
|
|
|
|
// 隐藏表单
|
|
|
|
|
hideForm() {
|
|
|
|
|
// 更改值
|
|
|
|
@ -352,6 +656,59 @@ export default {
|
|
|
|
|
this.getList();
|
|
|
|
|
return true;
|
|
|
|
|
},
|
|
|
|
|
handCert(index, row) {
|
|
|
|
|
this.registrationId = row.id;
|
|
|
|
|
this.curProductQuery = row;
|
|
|
|
|
// this.curProductQuery.cuStatus = this.currentManufacturer.auditStatus;
|
|
|
|
|
// this.curProductQuery.companyIdFk =
|
|
|
|
|
// this.list.companyIdFk;
|
|
|
|
|
console.log(this.curProductQuery)
|
|
|
|
|
if (this.editType == 0) {
|
|
|
|
|
// this.inputQuery.productId = getUUID("");
|
|
|
|
|
this.inputQuery.companyIdFk = this.list.companyIdFk;
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
this.getCompanyCertList();
|
|
|
|
|
|
|
|
|
|
this.pmQuery.companyIdFk = this.curProductQuery.companyIdFk;
|
|
|
|
|
console.log("2"+ this.list.companyIdFk);
|
|
|
|
|
}
|
|
|
|
|
this.cuStatus = this.certList.auditStatus;
|
|
|
|
|
this.findMethod();
|
|
|
|
|
this.findPMMethod();
|
|
|
|
|
this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name=";
|
|
|
|
|
console.log("666666666666:"+this.cuStatus);
|
|
|
|
|
|
|
|
|
|
this.formName = "cert";
|
|
|
|
|
this.editProductType = 1;
|
|
|
|
|
|
|
|
|
|
this.formVisible = true;
|
|
|
|
|
// this.formName = "add";
|
|
|
|
|
this.spellUpdate = false;
|
|
|
|
|
if (index !== null) {
|
|
|
|
|
this.index = index;
|
|
|
|
|
this.formName = "cert";
|
|
|
|
|
this.spellUpdate = true;
|
|
|
|
|
this.editQuery = row;
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
this.editQuery = {
|
|
|
|
|
id: "",
|
|
|
|
|
thirdId: "",
|
|
|
|
|
erpId: "",
|
|
|
|
|
name: "",
|
|
|
|
|
spell: "",
|
|
|
|
|
addr: "",
|
|
|
|
|
status: "",
|
|
|
|
|
type: "",
|
|
|
|
|
creditNo: "",
|
|
|
|
|
contact: "",
|
|
|
|
|
mobile: ""
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//this.getThirdSysDetail();
|
|
|
|
|
},
|
|
|
|
|
// 显示表单
|
|
|
|
|
handleForm(index, row) {
|
|
|
|
|
this.formVisible = true;
|
|
|
|
@ -379,7 +736,7 @@ export default {
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.getThirdSysDetail();
|
|
|
|
|
//this.getThirdSysDetail();
|
|
|
|
|
},
|
|
|
|
|
formSubmit() {
|
|
|
|
|
if (this.$isBlank(this.editQuery.corpType)) {
|
|
|
|
@ -457,7 +814,7 @@ export default {
|
|
|
|
|
this.editDialogVisible = false;
|
|
|
|
|
this.selectSingleUnitVisible = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
this.getThirdSysDetail();
|
|
|
|
|
//this.getThirdSysDetail();
|
|
|
|
|
},
|
|
|
|
|
closeMain(val) {
|
|
|
|
|
this.selectDrugDialogVisible = false;
|
|
|
|
@ -476,7 +833,7 @@ export default {
|
|
|
|
|
this.editQuery = row;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.getThirdSysDetail();
|
|
|
|
|
//this.getThirdSysDetail();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
deleteDialog(rowId) {
|
|
|
|
@ -607,15 +964,29 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
components: {
|
|
|
|
|
companyAddCert,
|
|
|
|
|
selectUnit, selectSingleUnit
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
created() {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.getSyncConfig();
|
|
|
|
|
this.getBasicThirdSys();
|
|
|
|
|
//this.getSyncConfig();
|
|
|
|
|
//this.getBasicThirdSys();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
filters: {
|
|
|
|
|
statusFilterType(status) {
|
|
|
|
|
const statusMap = {
|
|
|
|
|
0: "warning",
|
|
|
|
|
1: "success",
|
|
|
|
|
2: "danger",
|
|
|
|
|
6: "warning",
|
|
|
|
|
};
|
|
|
|
|
return statusMap[status];
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
</script>
|
|
|
|
@ -642,5 +1013,9 @@ export default {
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.el-card {
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
/*transition: all .5s;*/
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|