|
|
|
@ -1,4 +1,5 @@
|
|
|
|
|
<template>
|
|
|
|
|
<!-- 本企业资质页面 -->
|
|
|
|
|
<div>
|
|
|
|
|
<el-form
|
|
|
|
|
:model="inputQuery"
|
|
|
|
@ -7,49 +8,58 @@
|
|
|
|
|
label-width="100px"
|
|
|
|
|
>
|
|
|
|
|
<el-card class="el-card">
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<span>
|
|
|
|
|
本企业信息审核状态:
|
|
|
|
|
<el-tag :type="(inputQuery.auditStatus) | statusFilterType">
|
|
|
|
|
{{ checkSupFlag[inputQuery.auditStatus] }}
|
|
|
|
|
</el-tag>
|
|
|
|
|
</span>
|
|
|
|
|
<span>
|
|
|
|
|
本企业信息审核状态:
|
|
|
|
|
<el-tag :type="inputQuery.auditStatus | statusFilterType">
|
|
|
|
|
{{ checkSupFlag[inputQuery.auditStatus] }}
|
|
|
|
|
</el-tag>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div style="float:right ;margin-top: -20px">
|
|
|
|
|
<div style="float: right; margin-top: -20px">
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
size="mini"
|
|
|
|
|
icon="search"
|
|
|
|
|
v-if="inputQuery.auditStatus == 0"
|
|
|
|
|
@click="onModifySubmit(0)"
|
|
|
|
|
>草稿保存
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
>草稿保存
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
size="mini"
|
|
|
|
|
icon="search"
|
|
|
|
|
v-if="inputQuery.auditStatus == 0|| inputQuery.auditStatus == 6"
|
|
|
|
|
v-if="inputQuery.auditStatus == 0 || inputQuery.auditStatus == 6"
|
|
|
|
|
@click="onModifySubmit(6)"
|
|
|
|
|
>提交审核
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
>提交审核
|
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
size="mini"
|
|
|
|
|
icon="search"
|
|
|
|
|
v-if="inputQuery.auditStatus == 3|| inputQuery.auditStatus == 1|| inputQuery.auditStatus == 2"
|
|
|
|
|
v-if="
|
|
|
|
|
inputQuery.auditStatus == 3 ||
|
|
|
|
|
inputQuery.auditStatus == 1 ||
|
|
|
|
|
inputQuery.auditStatus == 2
|
|
|
|
|
"
|
|
|
|
|
@click="onModifySubmit(3)"
|
|
|
|
|
>提交审核
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
>提交审核
|
|
|
|
|
</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex" style="margin-top: 25px">
|
|
|
|
|
<el-row
|
|
|
|
|
:gutter="20"
|
|
|
|
|
class="el-row"
|
|
|
|
|
type="flex"
|
|
|
|
|
style="margin-top: 25px"
|
|
|
|
|
>
|
|
|
|
|
<el-col :span="10" class="el-col">
|
|
|
|
|
<el-form-item label="企业名称:" label-width="150px" prop="companyName">
|
|
|
|
|
<el-form-item
|
|
|
|
|
label="企业名称:"
|
|
|
|
|
label-width="150px"
|
|
|
|
|
prop="companyName"
|
|
|
|
|
>
|
|
|
|
|
<el-input
|
|
|
|
|
size="small"
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
@ -58,7 +68,11 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="10" class="el-col">
|
|
|
|
|
<el-form-item label="统一社会信用代码:" label-width="150px" prop="creditNum">
|
|
|
|
|
<el-form-item
|
|
|
|
|
label="统一社会信用代码:"
|
|
|
|
|
label-width="150px"
|
|
|
|
|
prop="creditNum"
|
|
|
|
|
>
|
|
|
|
|
<el-input
|
|
|
|
|
size="small"
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
@ -75,9 +89,13 @@
|
|
|
|
|
size="small"
|
|
|
|
|
v-model="inputQuery.classes"
|
|
|
|
|
placeholder="企业类别"
|
|
|
|
|
style="width: 100%;"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
>
|
|
|
|
|
<el-option v-if="classesDisplay" label="医院" value="1"></el-option>
|
|
|
|
|
<el-option
|
|
|
|
|
v-if="classesDisplay"
|
|
|
|
|
label="医院"
|
|
|
|
|
value="1"
|
|
|
|
|
></el-option>
|
|
|
|
|
<el-option label="经营企业" value="2"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
@ -104,12 +122,16 @@
|
|
|
|
|
size="small"
|
|
|
|
|
placeholder="请输入内容"
|
|
|
|
|
v-model="inputQuery.contacts"
|
|
|
|
|
@blur="inputQuery.contacts=$event.target.value.trim()"
|
|
|
|
|
@blur="inputQuery.contacts = $event.target.value.trim()"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="10" class="el-col">
|
|
|
|
|
<el-form-item label="详细地址:" label-width="150px" prop="detailAddr">
|
|
|
|
|
<el-form-item
|
|
|
|
|
label="详细地址:"
|
|
|
|
|
label-width="150px"
|
|
|
|
|
prop="detailAddr"
|
|
|
|
|
>
|
|
|
|
|
<el-input
|
|
|
|
|
size="small"
|
|
|
|
|
placeholder="请输入内容"
|
|
|
|
@ -140,48 +162,76 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20" v-show="inputQuery.auditStatus==2" class="el-row" type="flex" style="margin-top: 0px">
|
|
|
|
|
<el-row
|
|
|
|
|
:gutter="20"
|
|
|
|
|
v-show="inputQuery.auditStatus == 2"
|
|
|
|
|
class="el-row"
|
|
|
|
|
type="flex"
|
|
|
|
|
style="margin-top: 0px"
|
|
|
|
|
>
|
|
|
|
|
<el-col :span="10" class="el-col">
|
|
|
|
|
<el-form-item label="结果说明:" label-width="150px" prop="mobile">
|
|
|
|
|
<el-input size="small" v-model="inputQuery.auditComment" disabled></el-input>
|
|
|
|
|
<el-input
|
|
|
|
|
size="small"
|
|
|
|
|
v-model="inputQuery.auditComment"
|
|
|
|
|
disabled
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
</el-card>
|
|
|
|
|
<el-card>
|
|
|
|
|
<div style="float: right;text-align: right;margin-bottom: 8px;">
|
|
|
|
|
<el-button type="primary" size="mini" icon="search" @click="selectCert"
|
|
|
|
|
style="text-align:right"
|
|
|
|
|
>选入资质证书
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
<el-button type="primary" size="mini" icon="search" @click="addCert()"
|
|
|
|
|
style="text-align:right"
|
|
|
|
|
>添加资质证书
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<div style="float: right; text-align: right; margin-bottom: 8px">
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
size="mini"
|
|
|
|
|
icon="search"
|
|
|
|
|
@click="selectCert"
|
|
|
|
|
style="text-align: right"
|
|
|
|
|
>选入资质证书
|
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
size="mini"
|
|
|
|
|
icon="search"
|
|
|
|
|
@click="addCert()"
|
|
|
|
|
style="text-align: right"
|
|
|
|
|
>添加资质证书
|
|
|
|
|
</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="certLoading" :data="certList" style="width: 100%" border highlight-current-row>
|
|
|
|
|
<el-table-column type="index" label="序号" width="50"></el-table-column>
|
|
|
|
|
<el-table
|
|
|
|
|
v-loading="certLoading"
|
|
|
|
|
:data="certList"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
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">
|
|
|
|
|
<el-tag :type="scope.row.auditStatus | statusFilterType">
|
|
|
|
|
{{ checkFlag[scope.row.auditStatus] }}
|
|
|
|
|
</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="确认说明" prop="auditComment" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="确认说明"
|
|
|
|
|
prop="auditComment"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column label="状态" prop="status" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag :type="(scope.row.status) | statusType">
|
|
|
|
|
<el-tag :type="scope.row.status | statusType">
|
|
|
|
|
{{ statusFlag[scope.row.status] }}
|
|
|
|
|
</el-tag>
|
|
|
|
|
</template>
|
|
|
|
@ -191,17 +241,48 @@
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" width="180">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" size="small" @click.native="addCert(scope.row)">编辑</el-button>
|
|
|
|
|
<el-button type="text" size="small" @click.native="showImgViewer(scope.row)">预览</el-button>
|
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus == 0 || scope.row.auditStatus == 2|| scope.row.auditStatus == 6" @click.native="deleteCompanyCert(scope.row)">删除</el-button>
|
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus == 2" @click.native="explainCompanyCert(scope.row)">说明</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native="addCert(scope.row)"
|
|
|
|
|
>编辑</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native="showImgViewer(scope.row)"
|
|
|
|
|
>预览</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
v-if="
|
|
|
|
|
scope.row.auditStatus == 0 ||
|
|
|
|
|
scope.row.auditStatus == 2 ||
|
|
|
|
|
scope.row.auditStatus == 6
|
|
|
|
|
"
|
|
|
|
|
@click.native="deleteCompanyCert(scope.row)"
|
|
|
|
|
>删除</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
v-if="scope.row.auditStatus == 2"
|
|
|
|
|
@click.native="explainCompanyCert(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"/>
|
|
|
|
|
<el-image-viewer
|
|
|
|
|
v-if="imgViewerVisible"
|
|
|
|
|
style="z-index: 9999"
|
|
|
|
|
:on-close="closeImgViewer"
|
|
|
|
|
:url-list="imgList"
|
|
|
|
|
/>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="certTotal>0"
|
|
|
|
|
v-show="certTotal > 0"
|
|
|
|
|
:total="certTotal"
|
|
|
|
|
:limit.sync="certQuery.limit"
|
|
|
|
|
:page.sync="certQuery.page"
|
|
|
|
@ -209,7 +290,6 @@
|
|
|
|
|
></pagination>
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
:title="formMap[formName]"
|
|
|
|
|
:visible.sync="addCertVisible"
|
|
|
|
@ -218,7 +298,7 @@
|
|
|
|
|
width="60%"
|
|
|
|
|
v-if="addCertVisible"
|
|
|
|
|
append-to-body
|
|
|
|
|
@close='closeLocalDialog'
|
|
|
|
|
@close="closeLocalDialog"
|
|
|
|
|
>
|
|
|
|
|
<companyAddCert
|
|
|
|
|
:closeDialog="closeLocalDialog"
|
|
|
|
@ -228,7 +308,6 @@
|
|
|
|
|
></companyAddCert>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="选入资质证书"
|
|
|
|
|
:visible.sync="selectCertVisible"
|
|
|
|
@ -237,7 +316,7 @@
|
|
|
|
|
width="60%"
|
|
|
|
|
v-if="selectCertVisible"
|
|
|
|
|
append-to-body
|
|
|
|
|
@close='closeLocalDialog'
|
|
|
|
|
@close="closeLocalDialog"
|
|
|
|
|
>
|
|
|
|
|
<supCertSetSelectDialog
|
|
|
|
|
:certType="certType"
|
|
|
|
@ -257,34 +336,39 @@
|
|
|
|
|
>
|
|
|
|
|
<el-form-item label="拒绝原因:"><el-input v-model="explainMsg" placeholder="请输入内容"></el-input></el-form-item>
|
|
|
|
|
</el-dialog> -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-form>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {modifyCompany, addCompany, getSubCompany} from "@/api/supplier/supCompany";
|
|
|
|
|
import {
|
|
|
|
|
modifyCompany,
|
|
|
|
|
addCompany,
|
|
|
|
|
getSubCompany,
|
|
|
|
|
} from "@/api/supplier/supCompany";
|
|
|
|
|
import store from "@/store/index";
|
|
|
|
|
import {regionDataPlus, CodeToText,} from "element-china-area-data";
|
|
|
|
|
import {filterCompanyCert, deleteCompanyCert, updateCompanyCert} from "@/api/purchase/companyCert";
|
|
|
|
|
import { regionDataPlus, CodeToText } from "element-china-area-data";
|
|
|
|
|
import {
|
|
|
|
|
filterCompanyCert,
|
|
|
|
|
deleteCompanyCert,
|
|
|
|
|
updateCompanyCert,
|
|
|
|
|
} from "@/api/purchase/companyCert";
|
|
|
|
|
import companyAddCert from "@/views/purchase/cert/supCertAddDialog";
|
|
|
|
|
import supCertSetSelectDialog from "@/views/purchase/cert/supCertSetSelectDialog";
|
|
|
|
|
import draggable from "vuedraggable";
|
|
|
|
|
import {getCompany} from "@/api/supplier/company";
|
|
|
|
|
import { previewImage } from '@/api/purchase/supCompany';
|
|
|
|
|
import { getCompany } from "@/api/supplier/company";
|
|
|
|
|
import { previewImage } from "@/api/purchase/supCompany";
|
|
|
|
|
import ElImageViewer from "element-ui/packages/image/src/image-viewer";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
|
|
|
|
|
name: "supCompanyEdit",
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
BASE_URL: process.env.VUE_APP_BASE_API,
|
|
|
|
|
inputQuery: {},
|
|
|
|
|
headers: {},
|
|
|
|
|
imgViewerVisible:false,
|
|
|
|
|
imgList:[],
|
|
|
|
|
imgViewerVisible: false,
|
|
|
|
|
imgList: [],
|
|
|
|
|
classesDisplay: false,
|
|
|
|
|
selectedOptions: [],
|
|
|
|
|
options: regionDataPlus,
|
|
|
|
@ -293,74 +377,74 @@ export default {
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入企业名称",
|
|
|
|
|
trigger: "blur"
|
|
|
|
|
}
|
|
|
|
|
trigger: "blur",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
creditNum: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入统一社会信用代码",
|
|
|
|
|
trigger: "blur"
|
|
|
|
|
}
|
|
|
|
|
trigger: "blur",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
classes: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请选择企业类别",
|
|
|
|
|
trigger: "change"
|
|
|
|
|
}
|
|
|
|
|
trigger: "change",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
area: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请选择所属地区",
|
|
|
|
|
trigger: "change"
|
|
|
|
|
}
|
|
|
|
|
trigger: "change",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
detailAddr: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入详细地址",
|
|
|
|
|
trigger: "change"
|
|
|
|
|
}
|
|
|
|
|
trigger: "change",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
contacts: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入联系人",
|
|
|
|
|
trigger: "change"
|
|
|
|
|
}
|
|
|
|
|
trigger: "change",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
mobile: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入联系电话",
|
|
|
|
|
trigger: "change"
|
|
|
|
|
}
|
|
|
|
|
trigger: "change",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
email: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入邮箱",
|
|
|
|
|
trigger: "change"
|
|
|
|
|
}
|
|
|
|
|
trigger: "change",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
updateCause: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入变更原因",
|
|
|
|
|
trigger: "change"
|
|
|
|
|
}
|
|
|
|
|
trigger: "change",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
uploadUrl: "",
|
|
|
|
|
fileUrl: "",
|
|
|
|
|
certFileUrl: "",
|
|
|
|
|
url: 'http://127.0.0.1:9996/udiwms/image/register/file/getImage?type=image1&name=t11111.jpg',
|
|
|
|
|
url: "http://127.0.0.1:9996/udiwms/image/register/file/getImage?type=image1&name=t11111.jpg",
|
|
|
|
|
certQuery: {
|
|
|
|
|
type: 1,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 20
|
|
|
|
|
limit: 20,
|
|
|
|
|
},
|
|
|
|
|
certList: [],
|
|
|
|
|
certTotal: 0,
|
|
|
|
@ -370,14 +454,14 @@ export default {
|
|
|
|
|
salesmanQuery: {
|
|
|
|
|
name: "",
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 20
|
|
|
|
|
limit: 20,
|
|
|
|
|
},
|
|
|
|
|
salesmanList: [],
|
|
|
|
|
salesmanTotal: 0,
|
|
|
|
|
salesmanLoading: false,
|
|
|
|
|
addSalesmanVisible: false,
|
|
|
|
|
certTypeMap: {
|
|
|
|
|
1: '身份证'
|
|
|
|
|
1: "身份证",
|
|
|
|
|
},
|
|
|
|
|
selectLocalVisible: false,
|
|
|
|
|
productQuery: {
|
|
|
|
@ -385,7 +469,7 @@ export default {
|
|
|
|
|
cpmctymc: "",
|
|
|
|
|
ggxh: "",
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 20
|
|
|
|
|
limit: 20,
|
|
|
|
|
},
|
|
|
|
|
productList: [],
|
|
|
|
|
productTotal: 0,
|
|
|
|
@ -393,7 +477,7 @@ export default {
|
|
|
|
|
uuid: null,
|
|
|
|
|
companyApplyUpdateVisible: false,
|
|
|
|
|
explainCertVisible: false,
|
|
|
|
|
explainMsg: '',
|
|
|
|
|
explainMsg: "",
|
|
|
|
|
companyEditDisabled: true,
|
|
|
|
|
companyEditButtonStr: "编辑",
|
|
|
|
|
addType: "1", //证书类型:1:供应商;2.生产企业;3.产品品种
|
|
|
|
@ -432,13 +516,16 @@ export default {
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
|
draggable, companyAddCert, supCertSetSelectDialog, ElImageViewer
|
|
|
|
|
draggable,
|
|
|
|
|
companyAddCert,
|
|
|
|
|
supCertSetSelectDialog,
|
|
|
|
|
ElImageViewer,
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
getCompanyInfo() {
|
|
|
|
|
let query = {
|
|
|
|
|
customerId: this.$store.getters.customerId
|
|
|
|
|
}
|
|
|
|
|
customerId: this.$store.getters.customerId,
|
|
|
|
|
};
|
|
|
|
|
getCompany(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.inputQuery = response.data;
|
|
|
|
@ -448,40 +535,42 @@ export default {
|
|
|
|
|
this.getCompanyCertList();
|
|
|
|
|
this.selectedOptions = this.inputQuery.areaCode.split(",");
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
onModifySubmit(val) {
|
|
|
|
|
var status = this.inputQuery.auditStatus;
|
|
|
|
|
if (this.editType == 0) { //新增保存
|
|
|
|
|
if (this.editType == 0) {
|
|
|
|
|
//新增保存
|
|
|
|
|
|
|
|
|
|
this.$refs["inputQuery"].validate(valid => {
|
|
|
|
|
this.$refs["inputQuery"].validate((valid) => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
this.$confirm("是否确定提交保存?", "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
}).then(() => {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.inputQuery.auditStatus = val;
|
|
|
|
|
addCompany(this.inputQuery).then(response => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功");
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
this.inputQuery.auditStatus = status;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.inputQuery.auditStatus = val;
|
|
|
|
|
addCompany(this.inputQuery).then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功");
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
this.inputQuery.auditStatus = status;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
} else { //编辑保存
|
|
|
|
|
} else {
|
|
|
|
|
//编辑保存
|
|
|
|
|
if (val == 0) {
|
|
|
|
|
var str = "是否确定草稿保存?";
|
|
|
|
|
} else if (val == 6) {
|
|
|
|
@ -489,27 +578,28 @@ export default {
|
|
|
|
|
} else {
|
|
|
|
|
var str = "企业信息已通过审核,是否确认重新提交审核?";
|
|
|
|
|
}
|
|
|
|
|
this.$refs["inputQuery"].validate(valid => {
|
|
|
|
|
this.$refs["inputQuery"].validate((valid) => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
this.$confirm(str, "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
}).then(() => {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.inputQuery.auditStatus = val;
|
|
|
|
|
modifyCompany(this.inputQuery).then(response => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功");
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
this.inputQuery.auditStatus = status;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.inputQuery.auditStatus = val;
|
|
|
|
|
modifyCompany(this.inputQuery).then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功");
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
this.inputQuery.auditStatus = status;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
@ -517,13 +607,11 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
onAuditSubmit() {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
onAuditSubmit() {},
|
|
|
|
|
|
|
|
|
|
disableCert(row, status) {
|
|
|
|
|
row.status = status;
|
|
|
|
|
updateCompanyCert(row).then(response => {
|
|
|
|
|
updateCompanyCert(row).then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("更新成功!");
|
|
|
|
@ -532,27 +620,35 @@ export default {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
console.log(this.imgList)
|
|
|
|
|
this.imgViewerVisible = true;
|
|
|
|
|
});
|
|
|
|
|
const m = (e) => { e.preventDefault() };
|
|
|
|
|
document.body.style.overflow = 'hidden';
|
|
|
|
|
document.addEventListener("touchmove", m, false); // 禁止页面滑动
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
console.log(this.imgList);
|
|
|
|
|
this.imgViewerVisible = true;
|
|
|
|
|
});
|
|
|
|
|
const m = (e) => {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
};
|
|
|
|
|
document.body.style.overflow = "hidden";
|
|
|
|
|
document.addEventListener("touchmove", m, false); // 禁止页面滑动
|
|
|
|
|
},
|
|
|
|
|
closeImgViewer(){
|
|
|
|
|
closeImgViewer() {
|
|
|
|
|
this.imgViewerVisible = false;
|
|
|
|
|
const m = (e) => { e.preventDefault() };
|
|
|
|
|
document.body.style.overflow = 'auto';
|
|
|
|
|
const m = (e) => {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
};
|
|
|
|
|
document.body.style.overflow = "auto";
|
|
|
|
|
document.removeEventListener("touchmove", m, true);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -575,7 +671,7 @@ export default {
|
|
|
|
|
|
|
|
|
|
addCert(row) {
|
|
|
|
|
if (this.$isNotBlank(row)) {
|
|
|
|
|
this.formName = 2
|
|
|
|
|
this.formName = 2;
|
|
|
|
|
this.inputQuery.formData = row;
|
|
|
|
|
this.editTye = 2;
|
|
|
|
|
} else {
|
|
|
|
@ -591,7 +687,9 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
toViewCompanyCert(row) {
|
|
|
|
|
this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name=";
|
|
|
|
|
this.certFileUrl =
|
|
|
|
|
this.BASE_URL +
|
|
|
|
|
"/udiwms/image/register/file/getImage?type=image2&name=";
|
|
|
|
|
window.open(this.certFileUrl + row.filePath);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -605,7 +703,6 @@ export default {
|
|
|
|
|
this.certQuery.customerId = this.inputQuery.customerId;
|
|
|
|
|
filterCompanyCert(this.certQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
|
|
|
|
|
this.certLoading = false;
|
|
|
|
|
this.certList = response.data.list || [];
|
|
|
|
|
this.certTotal = response.data.total;
|
|
|
|
@ -620,42 +717,39 @@ export default {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
type: "warning",
|
|
|
|
|
showCancelButton: false,
|
|
|
|
|
}).then(() => {
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}).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(() => {
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.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(() => {});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
filters: {
|
|
|
|
|
statusFilterType(status) {
|
|
|
|
@ -669,7 +763,6 @@ export default {
|
|
|
|
|
return statusMap[status];
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
statusType(status) {
|
|
|
|
|
const statusMap = {
|
|
|
|
|
0: "success",
|
|
|
|
@ -677,8 +770,6 @@ export default {
|
|
|
|
|
};
|
|
|
|
|
return statusMap[status];
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|