This commit is contained in:
ljx
2025-09-10 19:34:57 +08:00
parent a3d35a7410
commit a3dd00645f
45 changed files with 146 additions and 55 deletions

View File

@ -31,6 +31,7 @@ export interface FlowTaskVO {
version?: string;
applyNode?: boolean;
buttonList?: buttonList[];
projectName?: string;
}
export interface buttonList {

View File

@ -12,7 +12,8 @@ export default {
businessId: routerJumpVo.businessId,
type: routerJumpVo.type,
planMonth: routerJumpVo.planMonth,
taskId: routerJumpVo.taskId
taskId: routerJumpVo.taskId,
projectName: routerJumpVo.projectName
}
});
}

View File

@ -4,6 +4,7 @@ export interface RouterJumpVo {
type: string;
formCustom: string;
formPath: string;
projectName?: string;
}
export interface StartProcessBo {