From eab663dd2172c8ef801b56432b9fc29c09a39590 Mon Sep 17 00:00:00 2001 From: qq787203167 <787203167@qq.com> Date: Thu, 18 Aug 2022 15:16:49 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=B9=E6=8E=A5=E6=90=9C=E7=B4=A2=E4=B8=AD?= =?UTF-8?q?=E5=BF=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../searchCenter/components/whole.vue | 23 +++++++++++-------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/jero-web/src/views/documentTools/searchCenter/components/whole.vue b/jero-web/src/views/documentTools/searchCenter/components/whole.vue index 12fe07c90..e8bd0c041 100644 --- a/jero-web/src/views/documentTools/searchCenter/components/whole.vue +++ b/jero-web/src/views/documentTools/searchCenter/components/whole.vue @@ -231,15 +231,20 @@ } }, titleClick(item) { - let newUrl = this.$router.resolve({ - path: '/docManage/library/detail', - query: { - id: item.id.slice(0, 32), - title: item.title, - serial_number: item.serial_number - } - }) - window.open(newUrl.href, '_blank') + console.log(item) + if (item.module_type_flag == 'FGYB') { + this.monthlyReportClick(item) + } else { + let newUrl = this.$router.resolve({ + path: '/docManage/library/detail', + query: { + id: item.id.slice(0, 32), + title: item.title, + serial_number: item.serial_number + } + }) + window.open(newUrl.href, '_blank') + } } } }