1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| // 全局流程相关变量
| const modelerStore = {
| 'userList': [],
| 'roleList': [],
| 'deptList': [],
| 'expList': [],
| 'modeler': null,
| 'modeling': null,
| 'moddle': null,
| 'canvas': null,
| 'bpmnFactory': null,
| 'elRegistry': null,
| 'element': null,
|
| }
| export default
| {
| modelerStore,
| }
|
|