From ca201a076849a1854b8a21ce75cc9e8d8cc80807 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=96=9B=E5=AE=87?= <2433098676@qq.com> Date: Wed, 9 Aug 2023 14:30:00 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=81=E4=B9=A6=E9=A2=84=E8=A7=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/basic/corpMaintain/corpMaintain.vue | 28 +++++++------ src/views/improveInfo.vue | 40 ++++++++++--------- 2 files changed, 36 insertions(+), 32 deletions(-) diff --git a/src/views/basic/corpMaintain/corpMaintain.vue b/src/views/basic/corpMaintain/corpMaintain.vue index 6bf8fa7..3db2020 100644 --- a/src/views/basic/corpMaintain/corpMaintain.vue +++ b/src/views/basic/corpMaintain/corpMaintain.vue @@ -654,19 +654,21 @@ export default { }); }, 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); // 禁止页面滑动 + let newWindow = window.open(); + newWindow.document.write(row.filePath) + // 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() { diff --git a/src/views/improveInfo.vue b/src/views/improveInfo.vue index c07af3a..be35091 100644 --- a/src/views/improveInfo.vue +++ b/src/views/improveInfo.vue @@ -947,25 +947,27 @@ export default { }, 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); // 禁止页面滑动 + let newWindow = window.open(); + newWindow.document.write(row.filePath) + // 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() { this.imgViewerVisible = false;