From e81f31c2257d87f7321a4a9822a98dd870c1c9ef Mon Sep 17 00:00:00 2001
From: songgaoshuai <1742057357@qq.com>
Date: Fri, 11 Aug 2023 10:32:02 +0800
Subject: [PATCH] =?UTF-8?q?fix=20=E4=BF=AE=E5=A4=8D=E6=88=91=E7=9A=84?=
=?UTF-8?q?=E5=8D=95=E6=8D=AE=E6=97=A0=E6=B3=95=E6=8F=90=E4=BA=A4=E9=97=AE?=
=?UTF-8?q?=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/workflow/task/myDocument.vue | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/src/views/workflow/task/myDocument.vue b/src/views/workflow/task/myDocument.vue
index 98f7538..fec0dc5 100644
--- a/src/views/workflow/task/myDocument.vue
+++ b/src/views/workflow/task/myDocument.vue
@@ -102,7 +102,7 @@
-
+
@@ -147,8 +147,6 @@ type CategoryOption = {
};
const tab = ref('running');
-// 任务id
-const taskId = ref('');
// 查询参数
const queryParams = ref>({
pageNum: 1,
@@ -254,8 +252,7 @@ const handleCancelProcessApply = async (row: any) => {
//提交
const submitVerifyOpen = async (id: string) => {
if (submitVerifyRef.value) {
- taskId.value = id;
- submitVerifyRef.value.openDialog(true);
+ submitVerifyRef.value.openDialog(true,id);
}
};