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') + }, } }