mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-05-18 13:58:07 +08:00
20 lines
473 B
XML
20 lines
473 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<flow>
|
|
<nodes>
|
|
<node id="s1" name="选择脚本" type="switch_script">
|
|
<![CDATA[
|
|
var count = defaultContext.getData('count');
|
|
if(count > 100){
|
|
return 'a';
|
|
}else{
|
|
return 'b';
|
|
}
|
|
]]>
|
|
</node>
|
|
</nodes>
|
|
|
|
<chain name="chain1">
|
|
THEN(d, SWITCH(s1).to(a,b));
|
|
</chain>
|
|
|
|
</flow> |