流程标签
#开始 start
#结束 end
#普通操作块 opration
#判断块 condition
#输入输出块 inputoutput

st=>start: 开始|past
op1=>operation: 记录/分配事件|past
op2=>operation: 回访/关闭|current
op3=>operation: 二线处理|current
cond=>condition: 是否解决?|approved
c2=>condition: 是否解决?|rejected
st->op1(right)->cond
cond(yes)->op2
cond(no)->op3(right)->c2
c2(yes,right)->op2
c2(no)->op1
st@>op1({"stroke":"black"})@>cond({"stroke":"black","arrow-end":"classic-wide-long"})@>c2({"stroke":"black"})@>op2({"stroke":"black"})@>e({"stroke":"black"})
其中#st为标签id
#start为开始标签
#开始为标签内容
#past为标签样式
#:后必须要加空格
#->作为控制流程的操作符,就是指向下一步要操作的
op1(right)->cond
意为从op1右侧画线指向cond
c2(yes,right)->op2
意为c2判断通过时,从右侧画线指向op2#stroke属性为颜色,默认是黑色
#arrow-end为箭头样式