1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
  | import '@antv/x6-vue-shape'; 
 |  import { Graph,Shape,Addon,FunctionExt} from '@antv/x6' 
 |  // 拖拽生成四边形或者圆形 
 |  export const startDragToGraph  = (graph,type,e) =>{ 
 |      const node =  
 |      type === 'Rect' 
 |      ? graph.createNode({ 
 |        width: 100, 
 |        height: 60, 
 |        attrs: { 
 |          label: { 
 |            text: '正方形节点', 
 |            fill: '#000000', 
 |            fontSize: 14, 
 |            textWrap: { 
 |              width: -10, 
 |              height: -10, 
 |              ellipsis: true 
 |            } 
 |          }, 
 |          body: { 
 |            stroke: '#000000', 
 |            strokeWidth: 1, 
 |            fill: '#ffffff' 
 |          } 
 |        }, 
 |        ports: ports 
 |      }) 
 |    : type === 'Circle'?graph.createNode({ 
 |        shape: 'ellipse', 
 |        width: 100, 
 |        height: 100, 
 |        attrs: { 
 |          label: { 
 |            text: '圆形节点', 
 |            fill: '#000000', 
 |            fontSize: 14, 
 |            textWrap: { 
 |              width: -20, 
 |              height: -10, 
 |              ellipsis: true 
 |            } 
 |          }, 
 |          body: { 
 |            stroke: '#000000', 
 |            strokeWidth: 1, 
 |            fill: '#ffffff' 
 |          } 
 |        }, 
 |        ports: ports 
 |      }): 
 |      graph.createNode({ 
 |        shape: 'polygon', 
 |        x: 40, 
 |        y: 40, 
 |        width: 120, 
 |        height: 120, 
 |        attrs: { 
 |          label: { 
 |            text: '条件节点', 
 |            fill: '#000000', 
 |            fontSize: 14, 
 |            textWrap: { 
 |              width: -50, 
 |              height: '70%', 
 |              ellipsis: true 
 |            } 
 |          }, 
 |          body: { 
 |            fill: '#ffffff', 
 |            stroke: '#000000', 
 |            refPoints: '0,10 10,0 20,10 10,20', 
 |            strokeWidth: 1 
 |          } 
 |        }, 
 |        ports: ports 
 |      }) 
 |      const dnd = new Addon.Dnd({target:graph}) 
 |      dnd.start(node,e) 
 |  } 
 |  const ports = { 
 |      groups: { 
 |        // 输入链接桩群组定义 
 |        top: { 
 |          position: 'top', 
 |          attrs: { 
 |            circle: { 
 |              r: 4, 
 |              magnet: true, 
 |              stroke: '#2D8CF0', 
 |              strokeWidth: 2, 
 |              fill: '#fff', 
 |            }, 
 |          }, 
 |        }, 
 |        // 输出链接桩群组定义 
 |        bottom: { 
 |          position: 'bottom', 
 |          attrs: { 
 |            circle: { 
 |              r: 4, 
 |              magnet: true, 
 |              stroke: '#2D8CF0', 
 |              strokeWidth: 2, 
 |              fill: '#fff', 
 |            }, 
 |          }, 
 |        }, 
 |        left: { 
 |          position: 'left', 
 |          attrs: { 
 |            circle: { 
 |              r: 4, 
 |              magnet: true, 
 |              stroke: '#2D8CF0', 
 |              strokeWidth: 2, 
 |              fill: '#fff', 
 |            }, 
 |          }, 
 |        }, 
 |        right: { 
 |          position: 'right', 
 |          attrs: { 
 |            circle: { 
 |              r: 4, 
 |              magnet: true, 
 |              stroke: '#2D8CF0', 
 |              strokeWidth: 2, 
 |              fill: '#fff', 
 |            }, 
 |          }, 
 |        }, 
 |      }, 
 |      items: [ 
 |        { 
 |          id: 'port1', 
 |          group: 'top', 
 |        }, 
 |        { 
 |          id: 'port2', 
 |          group: 'bottom', 
 |        }, 
 |        { 
 |          id: 'port3', 
 |          group: 'left', 
 |        }, 
 |        { 
 |          id: 'port4', 
 |          group: 'right', 
 |        } 
 |      ], 
 |  } 
 |  
  |