From 6aa15c75d9013efbf1d4fae937bf6d74115c98c7 Mon Sep 17 00:00:00 2001 From: zhujiyan <17812234322@163.com> Date: Wed, 5 Jun 2024 13:44:10 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=95=E8=BF=90=E8=A1=8C=E5=8E=86=E5=8F=B2?= =?UTF-8?q?=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/pqs/supervise/testRun/index.vue | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/views/pqs/supervise/testRun/index.vue b/src/views/pqs/supervise/testRun/index.vue index cd556620..2b6aaef8 100644 --- a/src/views/pqs/supervise/testRun/index.vue +++ b/src/views/pqs/supervise/testRun/index.vue @@ -116,7 +116,7 @@ const tableStore = new TableStore({ icon: 'el-icon-EditPen', render: 'basicButton', click: row => { - handleAudit(row.processInstanceId) + handleAudit(row.processInstanceId,row.historyInstanceId) }, disabled: row => { return row.testRunState != 2 @@ -161,11 +161,12 @@ onMounted(() => { /** 处理审批按钮 */ -const handleAudit = (instanceId: any) => { +const handleAudit = (instanceId: any,historyInstanceId:any) => { push({ name: 'BpmProcessInstanceDetail', - query: { - id: instanceId + state: { + id: instanceId, + historyInstanceId } }) }