From 1ba38cee19a66b2993012f04c71a1ba82e083b88 Mon Sep 17 00:00:00 2001 From: hongawen <83944980@qq.com> Date: Tue, 28 May 2024 16:11:42 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=AE=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/pqs/supervise/retire/index.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/views/pqs/supervise/retire/index.vue b/src/views/pqs/supervise/retire/index.vue index f304ceda..51fdd711 100644 --- a/src/views/pqs/supervise/retire/index.vue +++ b/src/views/pqs/supervise/retire/index.vue @@ -111,7 +111,7 @@ const tableStore = new TableStore({ icon: 'el-icon-EditPen', render: 'basicButton', click: row => { - handleAudit(row.processInstanceId) + handleAudit(row.processInstanceId,row.historyInstanceId) } }, { @@ -166,11 +166,12 @@ const add = () => { } /** 流程实例详情 */ -const handleAudit = (instanceId: any) => { +const handleAudit = (instanceId: string,historyIds:string) => { push({ name: 'BpmProcessInstanceDetail', query: { - id: instanceId + id: instanceId, + historyIds:historyIds } }) }