From 73db6deec3c4c85c9f2bbbcde7a9af4f7b419ae5 Mon Sep 17 00:00:00 2001
From: LiuHao <liuhaoai545@gmail.com>
Date: 星期一, 15 四月 2024 10:40:47 +0800
Subject: [PATCH] fix 修复类型缺失

---
 src/api/workflow/task/types.ts           |    1 +
 src/api/workflow/workflowCommon/types.ts |   18 ++++++++++--------
 2 files changed, 11 insertions(+), 8 deletions(-)

diff --git a/src/api/workflow/task/types.ts b/src/api/workflow/task/types.ts
index 5b24aa0..0425a1a 100644
--- a/src/api/workflow/task/types.ts
+++ b/src/api/workflow/task/types.ts
@@ -40,6 +40,7 @@
   multiInstance?: boolean;
   businessKey?: string;
   wfNodeConfigVo?: NodeConfigVO;
+  wfDefinitionConfigVo?: DefinitionConfigVO;
 }
 
 export interface VariableVo {
diff --git a/src/api/workflow/workflowCommon/types.ts b/src/api/workflow/workflowCommon/types.ts
index be7325f..0f1ef1f 100644
--- a/src/api/workflow/workflowCommon/types.ts
+++ b/src/api/workflow/workflowCommon/types.ts
@@ -1,14 +1,16 @@
 import { NodeConfigVO } from '@/api/workflow/nodeConfig/types';
+import { DefinitionConfigVO } from '@/api/workflow/definitionConfig/types';
 
 export interface RouterJumpVo {
-    wfNodeConfigVo: NodeConfigVO;
-    businessKey: string;
-    taskId: string;
-    type: string;
+  wfNodeConfigVo: NodeConfigVO;
+  wfDefinitionConfigVo: DefinitionConfigVO;
+  businessKey: string;
+  taskId: string;
+  type: string;
 }
 
 export interface StartProcessBo {
-    businessKey:  string | number;
-    tableName: string;
-    variables: any;
-}
\ No newline at end of file
+  businessKey: string | number;
+  tableName: string;
+  variables: any;
+}

--
Gitblit v1.9.3