feat: [BPM 工作流] Simple 模型 - 触发器节点条件设置

This commit is contained in:
jason
2025-05-30 21:06:41 +08:00
parent 9587a8cdcd
commit 688f7c9083
4 changed files with 410 additions and 15 deletions

View File

@@ -475,9 +475,9 @@ export type ListenerHandler = {
* 条件规则结构定义
*/
export type ConditionRule = {
leftSide: string;
leftSide: string | undefined;
opCode: string;
rightSide: string;
rightSide: string | undefined;
};
/**
@@ -725,7 +725,7 @@ export const DEFAULT_CONDITION_GROUP_VALUE = {
rules: [
{
opCode: '==',
leftSide: '',
leftSide: undefined,
rightSide: '',
},
],