diff --git a/ui/src/styles/app.scss b/ui/src/styles/app.scss index e02eb5adafa..a383bcefeb6 100644 --- a/ui/src/styles/app.scss +++ b/ui/src/styles/app.scss @@ -211,6 +211,9 @@ h5 { .p-8-12 { padding: calc(var(--app-base-px)) calc(var(--app-base-px) + 4px); } +.p-12-16 { + padding: calc(var(--app-base-px) + 4px) calc(var(--app-base-px) * 2); +} .p-12-24 { padding: calc(var(--app-base-px) + 4px) calc(var(--app-base-px) * 3); } diff --git a/ui/src/workflow/common/NodeContainer.vue b/ui/src/workflow/common/NodeContainer.vue index 06c1aad2b6d..65bdc95c87f 100644 --- a/ui/src/workflow/common/NodeContainer.vue +++ b/ui/src/workflow/common/NodeContainer.vue @@ -37,6 +37,27 @@ > + + {{ condition }} + + + 执行条件 + + 前置 + + + + + 连线节点执行完,执行当前节点 + + + + @@ -128,7 +149,8 @@ const height = ref<{ }) const showAnchor = ref(false) const anchorData = ref() -// const showNode = ref(true) +const condition = ref('AND') + const showNode = computed({ set: (v) => { set(props.nodeModel.properties, 'showNode', v)
+ 前置 + + + + + 连线节点执行完,执行当前节点 +