生产企业显示问题

dev
anthonywj 2 years ago
parent 45a1267c6a
commit 8b92adeb19

@ -212,7 +212,8 @@
</el-form> </el-form>
<el-card class="el-card"> <el-card class="el-card">
<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="selection" width="55"></el-table-column> <el-table-column type="selection" width="55"></el-table-column>
<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="name"></el-table-column> <el-table-column label="证书名称" prop="name"></el-table-column>
@ -235,7 +236,9 @@
<el-table-column label="操作" width="250"> <el-table-column label="操作" width="250">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button v-if="editType==1 && auditType!=1" type="text" size="small" @click.native="printSupCert(scope.row)"></el-button> <el-button v-if="editType==1 && auditType!=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="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 type="text" size="small" v-if="scope.row.auditStatus==1" @click.native="revoke(scope.row)">
撤回 撤回
@ -327,15 +330,17 @@
<el-col :span="11"> <el-col :span="11">
<el-form-item label="证书文件:"> <el-form-item label="证书文件:">
<el-button type="primary" size="mini" @click.native="showImgViewer(currentAudit)">证书预览</el-button> <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-form-item>
</el-col> </el-col>
</el-row> </el-row>
<el-row style="margin-top: 12px"> <el-row style="margin-top: 12px">
<el-col :span="22"> <el-col :span="22">
<el-form-item label="结果说明:"> <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-form-item>
</el-col> </el-col>
</el-row> </el-row>
@ -396,11 +401,12 @@ export default {
BASE_URL: process.env.VUE_APP_BASE_API, BASE_URL: process.env.VUE_APP_BASE_API,
fromOptions: [], fromOptions: [],
fromPMOptions: [], fromPMOptions: [],
imgViewerVisible:false, imgViewerVisible: false,
imgList:[], imgList: [],
pmQuery: { pmQuery: {
customerId: null, customerId: null,
companyName: null, companyName: null,
manufacturerId: null,
page: 1, page: 1,
limit: 10, limit: 10,
}, },
@ -508,7 +514,7 @@ export default {
1: "失效", 1: "失效",
}, },
confirmStatus: null, confirmStatus: null,
isOpen:false, isOpen: false,
certAuditVisible: false, certAuditVisible: false,
currentAudit: {}, currentAudit: {},
}; };
@ -517,11 +523,12 @@ export default {
if (this.editType == 0) { if (this.editType == 0) {
this.inputQuery.productId = getUUID(""); this.inputQuery.productId = getUUID("");
} else { } else {
if(this.editType!=2 && this.editType!=0){ if (this.editType != 2 && this.editType != 0) {
this.certQuery.auditStatus = 20; this.certQuery.auditStatus = 20;
} }
this.getCompanyCertList(); this.getCompanyCertList();
this.pmQuery.customerId = this.inputQuery.customerId; this.pmQuery.customerId = this.inputQuery.customerId;
this.pmQuery.manufacturerId = this.inputQuery.manufacturerIdFk;
this.findPMMethod(); this.findPMMethod();
} }
@ -530,7 +537,7 @@ export default {
}, },
components: { components: {
draggable, companyAddCert,ElImageViewer draggable, companyAddCert, ElImageViewer
}, },
methods: { methods: {
@ -556,25 +563,28 @@ export default {
}, },
isAssetTypeAnImage(ext) { isAssetTypeAnImage(ext) {
return [ return [
'png', 'jpg', 'jpeg', 'bmp', 'gif', 'webp', 'psd', 'svg', 'tiff']. 'png', 'jpg', 'jpeg', 'bmp', 'gif', 'webp', 'psd', 'svg', 'tiff'].indexOf(ext.toLowerCase()) !== -1;
indexOf(ext.toLowerCase()) !== -1;
}, },
showImgViewer(row){ showImgViewer(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=";
this.imgList=[]; this.imgList = [];
previewImage({imageUrl:row.filePath,certFileUrl:this.certFileUrl}).then(response => { previewImage({imageUrl: row.filePath, certFileUrl: this.certFileUrl}).then(response => {
if (response.code === 20000) { if (response.code === 20000) {
this.imgList=response.data; this.imgList = response.data;
} }
}); });
this.imgViewerVisible = true; this.imgViewerVisible = true;
const m = (e) => { e.preventDefault() }; const m = (e) => {
document.body.style.overflow = 'hidden'; e.preventDefault()
document.addEventListener("touchmove", m, false); // };
document.body.style.overflow = 'hidden';
document.addEventListener("touchmove", m, false); //
}, },
closeImgViewer(){ closeImgViewer() {
this.imgViewerVisible = false; this.imgViewerVisible = false;
const m = (e) => { e.preventDefault() }; const m = (e) => {
e.preventDefault()
};
document.body.style.overflow = 'auto'; document.body.style.overflow = 'auto';
document.removeEventListener("touchmove", m, true); document.removeEventListener("touchmove", m, true);
}, },
@ -701,7 +711,7 @@ export default {
.then((response) => { .then((response) => {
this.certLoading = false; this.certLoading = false;
this.certList = response.data.list || []; this.certList = response.data.list || [];
this.certTotal=response.data.total; this.certTotal = response.data.total;
}) })
.catch(() => { .catch(() => {
this.certLoading = false; this.certLoading = false;
@ -715,7 +725,7 @@ export default {
auditCert(row) { auditCert(row) {
this.certAuditVisible = true; this.certAuditVisible = true;
this.currentAudit = row; this.currentAudit = row;
this.isOpen=this.currentAudit.auditStatus; this.isOpen = this.currentAudit.auditStatus;
this.confirmStatus = this.currentAudit.auditStatus; this.confirmStatus = this.currentAudit.auditStatus;
}, },
revoke(inputQuery) { revoke(inputQuery) {
@ -778,7 +788,7 @@ export default {
}); });
}, },
printSupCert(row) { printSupCert(row) {
var selectIds=[row.id]; var selectIds = [row.id];
let query = {id: 3}; let query = {id: 3};
this.loading = true; this.loading = true;
verifyTemplateFile(query).then((res) => { verifyTemplateFile(query).then((res) => {
@ -809,12 +819,12 @@ export default {
}) })
}, },
printSupCertAll() { printSupCertAll() {
var certLists=this.$refs.certTable.selection; var certLists = this.$refs.certTable.selection;
var selectIds=[]; var selectIds = [];
certLists.forEach(item => { certLists.forEach(item => {
selectIds.push(item.id); selectIds.push(item.id);
}) })
if(selectIds.length==0){ if (selectIds.length == 0) {
this.$message.error("请先选择打印的证书!"); this.$message.error("请先选择打印的证书!");
return return
} }

Loading…
Cancel
Save