修改工作流主方法,修改证书申请

This commit is contained in:
v-me-50
2025-06-20 12:02:58 +08:00
parent eb6172436c
commit 6a2d3f98cd
6 changed files with 56 additions and 3 deletions

View File

@@ -286,6 +286,10 @@ func RunNode(node *WorkflowNode, ctx *ExecutionContext) error {
}
if node.ChildNode != nil {
fromNodeData, ok := ctx.GetOutput(node.Id)
if ok && fromNodeData != nil && node.ChildNode.Config["fromNodeData"] == nil {
node.ChildNode.Config["fromNodeData"] = fromNodeData
}
return RunNode(node.ChildNode, ctx)
}
return nil