|
|
|
@ -11,7 +11,8 @@
|
|
|
|
|
|
|
|
|
|
<div style="display: flex;">
|
|
|
|
|
<el-button v-if="editType==2" type="primary" size="mini" icon="search" @click="onPassSubmit">审核通过</el-button>
|
|
|
|
|
<el-button v-if="editType==2" type="primary" size="mini" icon="search" @click="onRejectSubmit">审核拒绝</el-button>
|
|
|
|
|
<el-button v-if="editType==2" type="primary" size="mini" icon="search" @click="onRejectSubmit">审核拒绝
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button v-if="editType==1" type="primary" size="mini" icon="search" @click="printSupCertAll">打印
|
|
|
|
|
</el-button>
|
|
|
|
|
</div>
|
|
|
|
@ -176,7 +177,8 @@
|
|
|
|
|
<!-- </el-button-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
</div>
|
|
|
|
|
<el-table v-loading="certLoading" :data="certList" ref="certTable" style="width: 100%" border highlight-current-row>
|
|
|
|
|
<el-table v-loading="certLoading" :data="certList" ref="certTable" 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>
|
|
|
|
@ -197,8 +199,12 @@
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="操作" width="250">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button v-if="editType==1" type="text" size="small" @click.native="printSupCert(scope.row)">打印</el-button>
|
|
|
|
|
<el-button v-if="editType==1" type="text" size="small" @click.native="printSupCert(scope.row)">打印
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="text" size="small" v-if="editType==2" @click.native="auditCert(scope.row)">编辑</el-button>
|
|
|
|
|
<el-button type="text" size="small" v-if="scope.row.auditStatus==1" @click.native="revoke(scope.row)">
|
|
|
|
|
撤回
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
@ -287,7 +293,8 @@
|
|
|
|
|
<el-col :span="11">
|
|
|
|
|
<el-form-item label="证书文件:">
|
|
|
|
|
<el-button type="primary" size="mini" @click.native="showImgViewer(currentAudit)">证书预览</el-button>
|
|
|
|
|
<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"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
@ -295,7 +302,8 @@
|
|
|
|
|
<el-row style="margin-top: 12px">
|
|
|
|
|
<el-col :span="22">
|
|
|
|
|
<el-form-item label="结果说明:">
|
|
|
|
|
<el-input type="textarea":disabled="isOpen==1" v-model="currentAudit.auditComment" autocomplete="off" autosize></el-input>
|
|
|
|
|
<el-input type="textarea" :disabled="isOpen==1" v-model="currentAudit.auditComment" autocomplete="off"
|
|
|
|
|
autosize></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
@ -313,7 +321,7 @@
|
|
|
|
|
<script>
|
|
|
|
|
import {auditManufacturer, addOrModifyCompany} from "../../../api/purchase/supManufacturer";
|
|
|
|
|
import {regionDataPlus, CodeToText} from "element-china-area-data";
|
|
|
|
|
import {filterCompanyCert, deleteCompanyCert, auditSupCert} from "../../../api/purchase/companyCert";
|
|
|
|
|
import {filterCompanyCert, deleteCompanyCert, auditSupCert, revokeSupCert} from "../../../api/purchase/companyCert";
|
|
|
|
|
import companyAddCert from "@/views/purchase/cert/supCertAddDialog";
|
|
|
|
|
import draggable from "vuedraggable";
|
|
|
|
|
import {
|
|
|
|
@ -348,8 +356,8 @@ export default {
|
|
|
|
|
classesDisplay: false,
|
|
|
|
|
selectedOptions: [],
|
|
|
|
|
selectedOptions2: [],
|
|
|
|
|
imgViewerVisible:false,
|
|
|
|
|
imgList:[],
|
|
|
|
|
imgViewerVisible: false,
|
|
|
|
|
imgList: [],
|
|
|
|
|
options: regionDataPlus,
|
|
|
|
|
rules: {
|
|
|
|
|
|
|
|
|
@ -439,7 +447,7 @@ export default {
|
|
|
|
|
certList: [],
|
|
|
|
|
certTotal: 0,
|
|
|
|
|
certLoading: false,
|
|
|
|
|
isOpen:false,
|
|
|
|
|
isOpen: false,
|
|
|
|
|
addCertVisible: false,
|
|
|
|
|
fromOptions: [],
|
|
|
|
|
confirmStatus: null,
|
|
|
|
@ -485,7 +493,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
|
draggable,
|
|
|
|
|
companyAddCert,ElImageViewer
|
|
|
|
|
companyAddCert, ElImageViewer
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
|
@ -534,34 +542,37 @@ export default {
|
|
|
|
|
,
|
|
|
|
|
isAssetTypeAnImage(ext) {
|
|
|
|
|
return [
|
|
|
|
|
'png', 'jpg', 'jpeg', 'bmp', 'gif', 'webp', 'psd', 'svg', 'tiff'].
|
|
|
|
|
indexOf(ext.toLowerCase()) !== -1;
|
|
|
|
|
},
|
|
|
|
|
showImgViewer(row){
|
|
|
|
|
var varindex= row.filePath.lastIndexOf(".");
|
|
|
|
|
var varext = row.filePath.substring(varindex+1);
|
|
|
|
|
var isImage=this.isAssetTypeAnImage(varext);
|
|
|
|
|
if(isImage==true){
|
|
|
|
|
'png', 'jpg', 'jpeg', 'bmp', 'gif', 'webp', 'psd', 'svg', 'tiff'].indexOf(ext.toLowerCase()) !== -1;
|
|
|
|
|
},
|
|
|
|
|
showImgViewer(row) {
|
|
|
|
|
var varindex = row.filePath.lastIndexOf(".");
|
|
|
|
|
var varext = row.filePath.substring(varindex + 1);
|
|
|
|
|
var isImage = this.isAssetTypeAnImage(varext);
|
|
|
|
|
if (isImage == true) {
|
|
|
|
|
this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name=";
|
|
|
|
|
this.imgList=[];
|
|
|
|
|
previewImage({imageUrl:row.filePath,certFileUrl:this.certFileUrl}).then(response => {
|
|
|
|
|
this.imgList = [];
|
|
|
|
|
previewImage({imageUrl: row.filePath, certFileUrl: this.certFileUrl}).then(response => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.imgList.push(response.data);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
this.imgViewerVisible = true;
|
|
|
|
|
const m = (e) => { e.preventDefault() };
|
|
|
|
|
const m = (e) => {
|
|
|
|
|
e.preventDefault()
|
|
|
|
|
};
|
|
|
|
|
document.body.style.overflow = 'hidden';
|
|
|
|
|
document.addEventListener("touchmove", m, false); // 禁止页面滑动
|
|
|
|
|
}else{
|
|
|
|
|
} else {
|
|
|
|
|
this.toViewCompanyCert(row);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
closeImgViewer(){
|
|
|
|
|
closeImgViewer() {
|
|
|
|
|
this.imgViewerVisible = false;
|
|
|
|
|
const m = (e) => { e.preventDefault() };
|
|
|
|
|
const m = (e) => {
|
|
|
|
|
e.preventDefault()
|
|
|
|
|
};
|
|
|
|
|
document.body.style.overflow = 'auto';
|
|
|
|
|
document.removeEventListener("touchmove", m, true);
|
|
|
|
|
},
|
|
|
|
@ -606,10 +617,34 @@ export default {
|
|
|
|
|
auditCert(row) {
|
|
|
|
|
this.certAuditVisible = true;
|
|
|
|
|
this.currentAudit = row;
|
|
|
|
|
this.isOpen=this.currentAudit.auditStatus;
|
|
|
|
|
this.isOpen = this.currentAudit.auditStatus;
|
|
|
|
|
this.confirmStatus = this.currentAudit.auditStatus;
|
|
|
|
|
},
|
|
|
|
|
revoke(inputQuery) {
|
|
|
|
|
this.$confirm("是否确定撤回证书状态至未确认?", "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
}).then(() => {
|
|
|
|
|
this.certLoading = true;
|
|
|
|
|
inputQuery.auditStatus = 6
|
|
|
|
|
revokeSupCert(inputQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.certLoading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.getCompanyCertList();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.certLoading = false;
|
|
|
|
|
});
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
passAuditCert() {
|
|
|
|
|
this.currentAudit.auditStatus = 1;
|
|
|
|
|
this.auditSupCert(this.currentAudit);
|
|
|
|
@ -772,7 +807,7 @@ export default {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
printSupCert(row) {
|
|
|
|
|
var selectIds=[row.id];
|
|
|
|
|
var selectIds = [row.id];
|
|
|
|
|
let query = {moduleId: 9};
|
|
|
|
|
this.loading = true;
|
|
|
|
|
verifyTemplateFile(query).then((res) => {
|
|
|
|
@ -803,12 +838,12 @@ export default {
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
printSupCertAll() {
|
|
|
|
|
var certLists=this.$refs.certTable.selection;
|
|
|
|
|
var selectIds=[];
|
|
|
|
|
var certLists = this.$refs.certTable.selection;
|
|
|
|
|
var selectIds = [];
|
|
|
|
|
certLists.forEach(item => {
|
|
|
|
|
selectIds.push(item.id);
|
|
|
|
|
})
|
|
|
|
|
if(selectIds.length==0){
|
|
|
|
|
if (selectIds.length == 0) {
|
|
|
|
|
this.$message.error("请先选择打印的证书!");
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|