yao/tests/flows/assign/submit.flow.json
2021-11-26 14:22:36 +08:00

29 lines
622 B
JSON

{
"label": "提交指派信息",
"version": "1.0.0",
"description": "提交指派信息",
"nodes": [
{
"name": "当前用户",
"process": "session.Get",
"args": ["user"]
},
{
"name": "工作流",
"process": "xiang.workflow.Save",
"args": [
"{{$res.当前用户.id}}",
"{{$name}}",
"{{$node}}",
"{{$id}}",
"{{$input}}"
]
},
{
"name": "提交审批",
"process": "xiang.workflow.Next",
"args": ["{{$res.当前用户.id}}", "{{$res.工作流.id}}"]
}
],
"output": "{{$res.关闭流程}}"
}