From b0a355521d7c929cc1a0b3113e0d434c9b77081a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E5=BC=BA=E5=BC=BA?= <787203167> Date: Fri, 7 Apr 2023 17:02:54 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B3=95=E8=A7=84=E6=B8=85?= =?UTF-8?q?=E5=8D=95=E5=A2=9E=E5=8A=A0=E8=B4=A3=E4=BB=BB=E4=BA=BA=E3=80=81?= =?UTF-8?q?=E6=88=AA=E6=AD=A2=E6=97=B6=E9=97=B4=E3=80=81=E4=BA=A4=E4=BB=98?= =?UTF-8?q?=E7=89=A9=E7=B1=BB=E5=9E=8B=E7=9A=84=E8=A1=A8=E5=A4=B4=E6=8E=92?= =?UTF-8?q?=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../certificationListMaintenance.vue | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/jero-web/src/views/virtualAuthenticationList/virtualAuthenticationListDesign/certificationListMaintenance.vue b/jero-web/src/views/virtualAuthenticationList/virtualAuthenticationListDesign/certificationListMaintenance.vue index 5f3e5a4c3..d7755f2e8 100644 --- a/jero-web/src/views/virtualAuthenticationList/virtualAuthenticationListDesign/certificationListMaintenance.vue +++ b/jero-web/src/views/virtualAuthenticationList/virtualAuthenticationListDesign/certificationListMaintenance.vue @@ -214,6 +214,11 @@ -- + + + {{text}} + + @@ -340,7 +345,8 @@ dataIndex: 'serialNumber', width: 210, sorter: true, - ellipsis: true + ellipsis: true, + scopedSlots: { customRender: 'serialNumber' } }, { title: this.$t('areaOfResponsibility'), @@ -561,7 +567,16 @@ // 交付物模板 viewFileClick(item) { this.$refs.viewFileModelRef.clickButtonToUpload(item) - } + }, + standardClick(row) { + let newUrl = this.$router.resolve({ + path: '/docManage/library/detail', + query: { + id: row.bussDocumentLibraryId + } + }) + window.open(newUrl.href, '_blank') + }, } }