feat:新增 全局会签 回调 和 节点上的 会签,预审,同意,退回的回调

This commit is contained in:
lvjunzhao
2025-04-14 16:51:22 +08:00
parent f55450cc99
commit c197cf7905
4 changed files with 473 additions and 5 deletions

View File

@ -114,6 +114,7 @@ export interface ProcessConfig {
globalAgreeEventConfigs: NodeEventConfig[];//全局同意事件
globalSuspendedEventConfigs: NodeEventConfig[];//全局 挂起/暂停事件
globalRestoreEventConfigs: NodeEventConfig[];//全局 恢复事件
globalSetSignEventConfigs: NodeEventConfig[];//全局 会签事件
xmlContent: String; //xml
}
@ -287,6 +288,11 @@ export interface BasicNodeConfig {
remark: string; //节点描述
startEventConfigs: NodeEventConfig[];
endEventConfigs: NodeEventConfig[];
prequalifyBeforeEventConfigs: [],//预审前
prequalifyAfterEventConfigs: [],//预审后
rejectEventConfigs: [],//全局退回事件
agreeEventConfigs: [],//全局同意事件
setSignEventConfigs: [],//全局 会签事件
}
export interface NodeEventConfig {