图例
表示流程的起点:
graph TB;
Begin((开始))
表示流程的终点:
graph TB;
End((结束))
表示流程分支:
graph TB;
分支{分支}
表示操作的用户类型:
graph TB;
SuperUser(fa:fa-user 超级管理员)
不带操作的注释性过程
graph TB;
comment(注释性过程)
classDef commentStyle stroke-dasharray:5;
class comment commentStyle
表示这是个子流程
graph TB;
subFlow>子流程]
click subFlow "#"
点击链接查看相应的子流程
表示关键操作流程
graph TB;
KeyNode[关键操作链接]
click KeyNode "#"
点击链接可以打开相应的操作界面。
由系统自自动进行的操作
graph TB;
system[系统操作]
classDef systemStyle fill:#FFE0B2;
class system systemStyle
由人工进行的操作
graph TB;
manual[人工操作]
classDef manualStyle fill:#BBDEFB;
class manual manualStyle
操作流程示例
graph TB;
KeyNode[关键操作链接]
click KeyNode "#"
KeyNode-->Comment(注释性过程)
Comment-->Manual[人工操作]
Manual-->System[系统操作]
classDef commentStyle stroke-dasharray:5;
class Comment commentStyle
classDef systemStyle fill:#FFE0B2;
class System systemStyle
classDef manualStyle fill:#BBDEFB;
class Manual manualStyle