From d9d2a2169e1844c529ceff15cb3dc798d7bd9770 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Thu, 10 Apr 2025 14:53:16 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A8=E6=A0=BC=E5=8F=8C=E5=87=BB=E3=80=81?= =?UTF-8?q?=E5=B1=95=E5=BC=80=E8=A1=8C=E4=BA=8B=E4=BB=B6=E5=8C=BA=E5=88=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/auditDocument/index.vue | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/views/trials/trials-workbench/components/auditDocument/index.vue b/src/views/trials/trials-workbench/components/auditDocument/index.vue index 9458e861..8d395bfd 100644 --- a/src/views/trials/trials-workbench/components/auditDocument/index.vue +++ b/src/views/trials/trials-workbench/components/auditDocument/index.vue @@ -19,6 +19,10 @@ + + + {{ $t('common:button:search') }} @@ -714,6 +718,9 @@ export default { } let res = await updateAuditDocument(data); + if (res.IsSuccess) { + this.getList() + } } catch (err) { this.getList() console.log(err) @@ -949,10 +956,10 @@ export default { this.$refs.contextmenu.init(e, row, 'file') }, // 单行左键双击(进入文件夹或者预览文件) - handleRowDblclick(row, column, cell, event) { + handleRowDblclick(row, column, event) { // 判断点击目标是否为展开按钮 - // const isExpandButton = event.target.closest('.el-table__expand-icon'); - // if (isExpandButton) return; // 阻止触发 + const isExpandButton = event.target.closest('.el-table__expand-icon'); + if (isExpandButton) return; // 阻止触发 if (!row.AuditDocumentTypeEnum) { this.Id = row.Id this.resetOpt()