service-flow-designer 2.1.36 → 2.1.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -111,6 +111,11 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
111
111
|
}
|
|
112
112
|
}
|
|
113
113
|
};
|
|
114
|
+
function columnNameChange(row) {
|
|
115
|
+
if (!row.alias) {
|
|
116
|
+
row.alias = row.name;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
114
119
|
const getNewItem = () => {
|
|
115
120
|
return {
|
|
116
121
|
code: v4(),
|
|
@@ -162,8 +167,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
162
167
|
modelValue: scope.row.name,
|
|
163
168
|
"onUpdate:modelValue": ($event) => scope.row.name = $event,
|
|
164
169
|
placeholder: "",
|
|
165
|
-
style: { "margin-right": "10px" }
|
|
166
|
-
|
|
170
|
+
style: { "margin-right": "10px" },
|
|
171
|
+
onChange: ($event) => columnNameChange(scope.row)
|
|
172
|
+
}, null, 8, ["disabled", "modelValue", "onUpdate:modelValue", "onChange"]))
|
|
167
173
|
]),
|
|
168
174
|
_: 1
|
|
169
175
|
}),
|
package/dist/es/style.css
CHANGED
|
@@ -184,6 +184,76 @@
|
|
|
184
184
|
margin-top: 10px;
|
|
185
185
|
}
|
|
186
186
|
|
|
187
|
+
.el-alert + .el-table[data-v-82e0dfef] {
|
|
188
|
+
margin-top: 10px;
|
|
189
|
+
}
|
|
190
|
+
.el-alert + .el-form-item[data-v-82e0dfef] {
|
|
191
|
+
margin-top: 10px;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.el-drawer__header {
|
|
195
|
+
margin-bottom: 0 !important;
|
|
196
|
+
}
|
|
197
|
+
/**
|
|
198
|
+
解决右侧弹出属性配置遮罩层打开后页面其他地方无法点击问题
|
|
199
|
+
*/
|
|
200
|
+
[data-v-d5185214] .el-overlay {
|
|
201
|
+
position: static;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.el-alert + .el-table[data-v-d978e7dc] {
|
|
205
|
+
margin-top: 10px;
|
|
206
|
+
}
|
|
207
|
+
.el-table + .el-alert[data-v-d978e7dc] {
|
|
208
|
+
margin: 10px 0;
|
|
209
|
+
}
|
|
210
|
+
.el-alert + .el-form-item[data-v-d978e7dc] {
|
|
211
|
+
margin-top: 10px;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
[data-v-286d914e] .el-table__row {
|
|
215
|
+
cursor: pointer;
|
|
216
|
+
}
|
|
217
|
+
/** 右键菜单样式 */
|
|
218
|
+
.context-menu[data-v-286d914e] {
|
|
219
|
+
position: absolute;
|
|
220
|
+
background: #fff;
|
|
221
|
+
z-index: 999;
|
|
222
|
+
margin: 5;
|
|
223
|
+
padding: 8px 8px;
|
|
224
|
+
box-shadow: 0 5px 7px 1px rgba(0, 0, 0, 0.1);
|
|
225
|
+
border: 1px solid #bbbbbb;
|
|
226
|
+
border-radius: 10px;
|
|
227
|
+
font-size: 14px;
|
|
228
|
+
}
|
|
229
|
+
.context-menu li[data-v-286d914e] {
|
|
230
|
+
list-style-type: none;
|
|
231
|
+
min-width: 75px;
|
|
232
|
+
line-height: 28px;
|
|
233
|
+
text-align: left;
|
|
234
|
+
border-radius: 5px;
|
|
235
|
+
padding-left: 5px;
|
|
236
|
+
cursor: pointer;
|
|
237
|
+
}
|
|
238
|
+
.context-menu li[data-v-286d914e]:hover {
|
|
239
|
+
background: #0165e1;
|
|
240
|
+
color: #fff;
|
|
241
|
+
}
|
|
242
|
+
/** 右键菜单样式 */
|
|
243
|
+
.custom-tree-node[data-v-286d914e] {
|
|
244
|
+
font-size: 14px;
|
|
245
|
+
padding-right: 8px;
|
|
246
|
+
display: flex; /* 使用Flex布局 */
|
|
247
|
+
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.el-alert + .el-table[data-v-028fb838] {
|
|
251
|
+
margin-top: 10px;
|
|
252
|
+
}
|
|
253
|
+
.el-table + .el-alert[data-v-028fb838] {
|
|
254
|
+
margin: 10px 0;
|
|
255
|
+
}
|
|
256
|
+
|
|
187
257
|
[data-v-6fdf85a5] .el-radio {
|
|
188
258
|
margin: 0;
|
|
189
259
|
}
|
|
@@ -191,6 +261,23 @@
|
|
|
191
261
|
margin-left: 10px;
|
|
192
262
|
}
|
|
193
263
|
|
|
264
|
+
.el-tabs + .el-alert[data-v-08737620] {
|
|
265
|
+
margin-top: 10px;
|
|
266
|
+
}
|
|
267
|
+
.el-alert + .el-form-item[data-v-08737620] {
|
|
268
|
+
margin-top: 10px;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.el-alert + .el-table[data-v-e27c4c1e] {
|
|
272
|
+
margin-top: 10px;
|
|
273
|
+
}
|
|
274
|
+
.el-table + .el-alert[data-v-e27c4c1e] {
|
|
275
|
+
margin: 10px 0;
|
|
276
|
+
}
|
|
277
|
+
.el-alert + .el-form-item[data-v-e27c4c1e] {
|
|
278
|
+
margin-top: 10px;
|
|
279
|
+
}
|
|
280
|
+
|
|
194
281
|
.editorTool[data-v-684c1f08] {
|
|
195
282
|
margin-left: auto;
|
|
196
283
|
}
|
|
@@ -203,21 +290,6 @@
|
|
|
203
290
|
justify-content: flex-start;
|
|
204
291
|
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
205
292
|
}
|
|
206
|
-
|
|
207
|
-
.el-alert + .el-table[data-v-d978e7dc] {
|
|
208
|
-
margin-top: 10px;
|
|
209
|
-
}
|
|
210
|
-
.el-table + .el-alert[data-v-d978e7dc] {
|
|
211
|
-
margin: 10px 0;
|
|
212
|
-
}
|
|
213
|
-
.el-alert + .el-form-item[data-v-d978e7dc] {
|
|
214
|
-
margin-top: 10px;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
.el-dialog__wrapper[data-v-7a4cbbaf] {
|
|
218
|
-
overflow: hidden !important;
|
|
219
|
-
padding-right: 0 !important;
|
|
220
|
-
}
|
|
221
293
|
.serviceflow-attr-base-content[data-v-8bad091d] {
|
|
222
294
|
background: #ffffff;
|
|
223
295
|
box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.05);
|
|
@@ -285,71 +357,23 @@
|
|
|
285
357
|
opacity: 1 !important;
|
|
286
358
|
}
|
|
287
359
|
|
|
288
|
-
.el-alert + .el-
|
|
360
|
+
.el-alert + .el-form-item[data-v-32875028] {
|
|
289
361
|
margin-top: 10px;
|
|
290
362
|
}
|
|
291
|
-
.el-
|
|
363
|
+
.el-alert + .el-table[data-v-32875028] {
|
|
292
364
|
margin: 10px 0;
|
|
293
365
|
}
|
|
294
366
|
|
|
295
|
-
|
|
296
|
-
margin
|
|
297
|
-
}
|
|
298
|
-
.el-alert + .el-form-item[data-v-82e0dfef] {
|
|
299
|
-
margin-top: 10px;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
[data-v-286d914e] .el-table__row {
|
|
303
|
-
cursor: pointer;
|
|
304
|
-
}
|
|
305
|
-
/** 右键菜单样式 */
|
|
306
|
-
.context-menu[data-v-286d914e] {
|
|
307
|
-
position: absolute;
|
|
308
|
-
background: #fff;
|
|
309
|
-
z-index: 999;
|
|
310
|
-
margin: 5;
|
|
311
|
-
padding: 8px 8px;
|
|
312
|
-
box-shadow: 0 5px 7px 1px rgba(0, 0, 0, 0.1);
|
|
313
|
-
border: 1px solid #bbbbbb;
|
|
314
|
-
border-radius: 10px;
|
|
315
|
-
font-size: 14px;
|
|
316
|
-
}
|
|
317
|
-
.context-menu li[data-v-286d914e] {
|
|
318
|
-
list-style-type: none;
|
|
319
|
-
min-width: 75px;
|
|
320
|
-
line-height: 28px;
|
|
321
|
-
text-align: left;
|
|
322
|
-
border-radius: 5px;
|
|
323
|
-
padding-left: 5px;
|
|
324
|
-
cursor: pointer;
|
|
325
|
-
}
|
|
326
|
-
.context-menu li[data-v-286d914e]:hover {
|
|
327
|
-
background: #0165e1;
|
|
328
|
-
color: #fff;
|
|
329
|
-
}
|
|
330
|
-
/** 右键菜单样式 */
|
|
331
|
-
.custom-tree-node[data-v-286d914e] {
|
|
332
|
-
font-size: 14px;
|
|
333
|
-
padding-right: 8px;
|
|
334
|
-
display: flex; /* 使用Flex布局 */
|
|
335
|
-
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
.el-alert + .el-table[data-v-e27c4c1e] {
|
|
339
|
-
margin-top: 10px;
|
|
340
|
-
}
|
|
341
|
-
.el-table + .el-alert[data-v-e27c4c1e] {
|
|
342
|
-
margin: 10px 0;
|
|
367
|
+
[data-v-dac15197] .el-radio {
|
|
368
|
+
margin: 0;
|
|
343
369
|
}
|
|
344
|
-
.el-
|
|
345
|
-
margin-
|
|
370
|
+
.el-radio + .el-radio[data-v-dac15197] {
|
|
371
|
+
margin-left: 10px;
|
|
346
372
|
}
|
|
347
373
|
|
|
348
|
-
.el-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
.el-alert + .el-form-item[data-v-08737620] {
|
|
352
|
-
margin-top: 10px;
|
|
374
|
+
.el-dialog__wrapper[data-v-7a4cbbaf] {
|
|
375
|
+
overflow: hidden !important;
|
|
376
|
+
padding-right: 0 !important;
|
|
353
377
|
}
|
|
354
378
|
.serviceflow-control-item[data-v-a2bd7452] {
|
|
355
379
|
top: -5px;
|
|
@@ -482,31 +506,7 @@
|
|
|
482
506
|
outline: none;
|
|
483
507
|
margin-left: 50px;
|
|
484
508
|
}
|
|
485
|
-
|
|
486
|
-
[data-v-dac15197] .el-radio {
|
|
487
|
-
margin: 0;
|
|
488
|
-
}
|
|
489
|
-
.el-radio + .el-radio[data-v-dac15197] {
|
|
490
|
-
margin-left: 10px;
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
.el-alert + .el-form-item[data-v-32875028] {
|
|
494
|
-
margin-top: 10px;
|
|
495
|
-
}
|
|
496
|
-
.el-alert + .el-table[data-v-32875028] {
|
|
497
|
-
margin: 10px 0;
|
|
498
|
-
}
|
|
499
|
-
|
|
500
|
-
.el-drawer__header {
|
|
501
|
-
margin-bottom: 0 !important;
|
|
502
|
-
}
|
|
503
|
-
/**
|
|
504
|
-
解决右侧弹出属性配置遮罩层打开后页面其他地方无法点击问题
|
|
505
|
-
*/
|
|
506
|
-
[data-v-d5185214] .el-overlay {
|
|
507
|
-
position: static;
|
|
508
|
-
}
|
|
509
|
-
.serviceflow-nodeView[data-v-418f1558] {
|
|
509
|
+
.serviceflow-nodeView[data-v-9770119b] {
|
|
510
510
|
box-sizing: border-box;
|
|
511
511
|
margin: 10px 10px;
|
|
512
512
|
width: 180px;
|
|
@@ -515,7 +515,7 @@
|
|
|
515
515
|
border-radius: 2px 2px 2px 2px;
|
|
516
516
|
padding: 20px 10px;
|
|
517
517
|
}
|
|
518
|
-
.serviceflow-nodeTitle[data-v-
|
|
518
|
+
.serviceflow-nodeTitle[data-v-9770119b] {
|
|
519
519
|
width: 90px;
|
|
520
520
|
height: 15px;
|
|
521
521
|
font-weight: 400;
|
|
@@ -531,7 +531,7 @@
|
|
|
531
531
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
532
532
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
533
533
|
}
|
|
534
|
-
.serviceflow-nodeContent[data-v-
|
|
534
|
+
.serviceflow-nodeContent[data-v-9770119b] {
|
|
535
535
|
/* width: 100%; */
|
|
536
536
|
height: 15px;
|
|
537
537
|
font-weight: 400;
|
|
@@ -547,41 +547,19 @@
|
|
|
547
547
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
548
548
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
549
549
|
}
|
|
550
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
550
|
+
.serviceflow-nodeContent-desc[data-v-9770119b] {
|
|
551
551
|
}
|
|
552
|
-
.el-divider--horizontal[data-v-
|
|
552
|
+
.el-divider--horizontal[data-v-9770119b] {
|
|
553
553
|
margin: 12px 0;
|
|
554
554
|
}
|
|
555
|
-
.serviceflow-nodeView[data-v-
|
|
555
|
+
.serviceflow-nodeView[data-v-9770119b] {
|
|
556
556
|
border: 1px solid #5a90f9;
|
|
557
|
-
background: #eef3fe;
|
|
558
|
-
width: 180px;
|
|
559
|
-
min-height: 95px;
|
|
560
|
-
}
|
|
561
|
-
.serviceflow-nodeContent[data-v-418f1558] {
|
|
562
|
-
}
|
|
563
|
-
|
|
564
|
-
.node-content[data-v-117d4091] {
|
|
565
|
-
width: 120px;
|
|
566
|
-
height: 44px;
|
|
567
|
-
background: #ffffff;
|
|
568
|
-
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
569
|
-
border-radius: 2px 2px 2px 2px;
|
|
557
|
+
background: #eef3fe;
|
|
570
558
|
}
|
|
571
|
-
.
|
|
572
|
-
width:
|
|
573
|
-
height: 15px;
|
|
574
|
-
font-weight: 400;
|
|
575
|
-
font-size: 14px;
|
|
576
|
-
color: #333333;
|
|
577
|
-
line-height: 14px;
|
|
578
|
-
text-align: left;
|
|
579
|
-
font-style: normal;
|
|
580
|
-
text-transform: none;
|
|
581
|
-
padding: 5px 0px 4px 10px;
|
|
582
|
-
box-sizing: content-box;
|
|
559
|
+
.serviceflow-nodeTitle[data-v-9770119b] {
|
|
560
|
+
width: 80px;
|
|
583
561
|
}
|
|
584
|
-
.serviceflow-nodeView[data-v-
|
|
562
|
+
.serviceflow-nodeView[data-v-b04d3f8b] {
|
|
585
563
|
box-sizing: border-box;
|
|
586
564
|
margin: 10px 10px;
|
|
587
565
|
width: 180px;
|
|
@@ -590,7 +568,7 @@
|
|
|
590
568
|
border-radius: 2px 2px 2px 2px;
|
|
591
569
|
padding: 20px 10px;
|
|
592
570
|
}
|
|
593
|
-
.serviceflow-nodeTitle[data-v-
|
|
571
|
+
.serviceflow-nodeTitle[data-v-b04d3f8b] {
|
|
594
572
|
width: 90px;
|
|
595
573
|
height: 15px;
|
|
596
574
|
font-weight: 400;
|
|
@@ -606,7 +584,7 @@
|
|
|
606
584
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
607
585
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
608
586
|
}
|
|
609
|
-
.serviceflow-nodeContent[data-v-
|
|
587
|
+
.serviceflow-nodeContent[data-v-b04d3f8b] {
|
|
610
588
|
/* width: 100%; */
|
|
611
589
|
height: 15px;
|
|
612
590
|
font-weight: 400;
|
|
@@ -622,19 +600,19 @@
|
|
|
622
600
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
623
601
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
624
602
|
}
|
|
625
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
603
|
+
.serviceflow-nodeContent-desc[data-v-b04d3f8b] {
|
|
626
604
|
}
|
|
627
|
-
.el-divider--horizontal[data-v-
|
|
605
|
+
.el-divider--horizontal[data-v-b04d3f8b] {
|
|
628
606
|
margin: 12px 0;
|
|
629
607
|
}
|
|
630
|
-
.serviceflow-nodeView[data-v-
|
|
608
|
+
.serviceflow-nodeView[data-v-b04d3f8b] {
|
|
631
609
|
border: 1px solid #5a90f9;
|
|
632
610
|
background: #eef3fe;
|
|
633
611
|
}
|
|
634
|
-
.serviceflow-nodeTitle[data-v-
|
|
612
|
+
.serviceflow-nodeTitle[data-v-b04d3f8b] {
|
|
635
613
|
width: 80px;
|
|
636
614
|
}
|
|
637
|
-
.serviceflow-nodeView[data-v-
|
|
615
|
+
.serviceflow-nodeView[data-v-91a913ff] {
|
|
638
616
|
box-sizing: border-box;
|
|
639
617
|
margin: 10px 10px;
|
|
640
618
|
width: 180px;
|
|
@@ -643,7 +621,7 @@
|
|
|
643
621
|
border-radius: 2px 2px 2px 2px;
|
|
644
622
|
padding: 20px 10px;
|
|
645
623
|
}
|
|
646
|
-
.serviceflow-nodeTitle[data-v-
|
|
624
|
+
.serviceflow-nodeTitle[data-v-91a913ff] {
|
|
647
625
|
width: 90px;
|
|
648
626
|
height: 15px;
|
|
649
627
|
font-weight: 400;
|
|
@@ -659,7 +637,7 @@
|
|
|
659
637
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
660
638
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
661
639
|
}
|
|
662
|
-
.serviceflow-nodeContent[data-v-
|
|
640
|
+
.serviceflow-nodeContent[data-v-91a913ff] {
|
|
663
641
|
/* width: 100%; */
|
|
664
642
|
height: 15px;
|
|
665
643
|
font-weight: 400;
|
|
@@ -675,20 +653,19 @@
|
|
|
675
653
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
676
654
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
677
655
|
}
|
|
678
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
656
|
+
.serviceflow-nodeContent-desc[data-v-91a913ff] {
|
|
679
657
|
}
|
|
680
|
-
.el-divider--horizontal[data-v-
|
|
658
|
+
.el-divider--horizontal[data-v-91a913ff] {
|
|
681
659
|
margin: 12px 0;
|
|
682
660
|
}
|
|
683
|
-
.serviceflow-nodeView[data-v-
|
|
661
|
+
.serviceflow-nodeView[data-v-91a913ff] {
|
|
684
662
|
border: 1px solid #5a90f9;
|
|
685
|
-
background: #eef3fe;
|
|
686
|
-
width: 180px;
|
|
687
|
-
min-height: 95px;
|
|
663
|
+
background: #eef3fe;
|
|
688
664
|
}
|
|
689
|
-
.serviceflow-
|
|
665
|
+
.serviceflow-nodeTitle[data-v-91a913ff] {
|
|
666
|
+
width: 80px;
|
|
690
667
|
}
|
|
691
|
-
.serviceflow-nodeView[data-v-
|
|
668
|
+
.serviceflow-nodeView[data-v-1ce8de44] {
|
|
692
669
|
box-sizing: border-box;
|
|
693
670
|
margin: 10px 10px;
|
|
694
671
|
width: 180px;
|
|
@@ -697,7 +674,7 @@
|
|
|
697
674
|
border-radius: 2px 2px 2px 2px;
|
|
698
675
|
padding: 20px 10px;
|
|
699
676
|
}
|
|
700
|
-
.serviceflow-nodeTitle[data-v-
|
|
677
|
+
.serviceflow-nodeTitle[data-v-1ce8de44] {
|
|
701
678
|
width: 90px;
|
|
702
679
|
height: 15px;
|
|
703
680
|
font-weight: 400;
|
|
@@ -713,7 +690,7 @@
|
|
|
713
690
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
714
691
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
715
692
|
}
|
|
716
|
-
.serviceflow-nodeContent[data-v-
|
|
693
|
+
.serviceflow-nodeContent[data-v-1ce8de44] {
|
|
717
694
|
/* width: 100%; */
|
|
718
695
|
height: 15px;
|
|
719
696
|
font-weight: 400;
|
|
@@ -729,19 +706,20 @@
|
|
|
729
706
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
730
707
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
731
708
|
}
|
|
732
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
709
|
+
.serviceflow-nodeContent-desc[data-v-1ce8de44] {
|
|
733
710
|
}
|
|
734
|
-
.el-divider--horizontal[data-v-
|
|
711
|
+
.el-divider--horizontal[data-v-1ce8de44] {
|
|
735
712
|
margin: 12px 0;
|
|
736
713
|
}
|
|
737
|
-
.serviceflow-nodeView[data-v-
|
|
714
|
+
.serviceflow-nodeView[data-v-1ce8de44] {
|
|
738
715
|
border: 1px solid #5a90f9;
|
|
739
|
-
background: #eef3fe;
|
|
716
|
+
background: #eef3fe;
|
|
717
|
+
width: 180px;
|
|
718
|
+
min-height: 95px;
|
|
740
719
|
}
|
|
741
|
-
.serviceflow-
|
|
742
|
-
width: 80px;
|
|
720
|
+
.serviceflow-nodeContent[data-v-1ce8de44] {
|
|
743
721
|
}
|
|
744
|
-
.serviceflow-nodeView[data-v-
|
|
722
|
+
.serviceflow-nodeView[data-v-08d9d211] {
|
|
745
723
|
box-sizing: border-box;
|
|
746
724
|
margin: 10px 10px;
|
|
747
725
|
width: 180px;
|
|
@@ -750,7 +728,7 @@
|
|
|
750
728
|
border-radius: 2px 2px 2px 2px;
|
|
751
729
|
padding: 20px 10px;
|
|
752
730
|
}
|
|
753
|
-
.serviceflow-nodeTitle[data-v-
|
|
731
|
+
.serviceflow-nodeTitle[data-v-08d9d211] {
|
|
754
732
|
width: 90px;
|
|
755
733
|
height: 15px;
|
|
756
734
|
font-weight: 400;
|
|
@@ -766,7 +744,7 @@
|
|
|
766
744
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
767
745
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
768
746
|
}
|
|
769
|
-
.serviceflow-nodeContent[data-v-
|
|
747
|
+
.serviceflow-nodeContent[data-v-08d9d211] {
|
|
770
748
|
/* width: 100%; */
|
|
771
749
|
height: 15px;
|
|
772
750
|
font-weight: 400;
|
|
@@ -782,16 +760,16 @@
|
|
|
782
760
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
783
761
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
784
762
|
}
|
|
785
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
763
|
+
.serviceflow-nodeContent-desc[data-v-08d9d211] {
|
|
786
764
|
}
|
|
787
|
-
.el-divider--horizontal[data-v-
|
|
765
|
+
.el-divider--horizontal[data-v-08d9d211] {
|
|
788
766
|
margin: 12px 0;
|
|
789
767
|
}
|
|
790
|
-
.serviceflow-nodeView[data-v-
|
|
768
|
+
.serviceflow-nodeView[data-v-08d9d211] {
|
|
791
769
|
border: 1px solid #5a90f9;
|
|
792
770
|
background: #eef3fe;
|
|
793
771
|
}
|
|
794
|
-
.serviceflow-nodeTitle[data-v-
|
|
772
|
+
.serviceflow-nodeTitle[data-v-08d9d211] {
|
|
795
773
|
width: 80px;
|
|
796
774
|
}
|
|
797
775
|
.serviceflow-nodeView[data-v-6b34f36c] {
|
|
@@ -848,14 +826,14 @@
|
|
|
848
826
|
width: 80px;
|
|
849
827
|
}
|
|
850
828
|
|
|
851
|
-
.node-content[data-v-
|
|
829
|
+
.node-content[data-v-117d4091] {
|
|
852
830
|
width: 120px;
|
|
853
831
|
height: 44px;
|
|
854
832
|
background: #ffffff;
|
|
855
833
|
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
856
834
|
border-radius: 2px 2px 2px 2px;
|
|
857
835
|
}
|
|
858
|
-
.content[data-v-
|
|
836
|
+
.content[data-v-117d4091] {
|
|
859
837
|
width: 28px;
|
|
860
838
|
height: 15px;
|
|
861
839
|
font-weight: 400;
|
|
@@ -866,9 +844,9 @@
|
|
|
866
844
|
font-style: normal;
|
|
867
845
|
text-transform: none;
|
|
868
846
|
padding: 5px 0px 4px 10px;
|
|
869
|
-
|
|
847
|
+
box-sizing: content-box;
|
|
870
848
|
}
|
|
871
|
-
.serviceflow-nodeView[data-v-
|
|
849
|
+
.serviceflow-nodeView[data-v-3c23a172] {
|
|
872
850
|
box-sizing: border-box;
|
|
873
851
|
margin: 10px 10px;
|
|
874
852
|
width: 180px;
|
|
@@ -877,7 +855,7 @@
|
|
|
877
855
|
border-radius: 2px 2px 2px 2px;
|
|
878
856
|
padding: 20px 10px;
|
|
879
857
|
}
|
|
880
|
-
.serviceflow-nodeTitle[data-v-
|
|
858
|
+
.serviceflow-nodeTitle[data-v-3c23a172] {
|
|
881
859
|
width: 90px;
|
|
882
860
|
height: 15px;
|
|
883
861
|
font-weight: 400;
|
|
@@ -893,7 +871,7 @@
|
|
|
893
871
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
894
872
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
895
873
|
}
|
|
896
|
-
.serviceflow-nodeContent[data-v-
|
|
874
|
+
.serviceflow-nodeContent[data-v-3c23a172] {
|
|
897
875
|
/* width: 100%; */
|
|
898
876
|
height: 15px;
|
|
899
877
|
font-weight: 400;
|
|
@@ -909,19 +887,20 @@
|
|
|
909
887
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
910
888
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
911
889
|
}
|
|
912
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
890
|
+
.serviceflow-nodeContent-desc[data-v-3c23a172] {
|
|
913
891
|
}
|
|
914
|
-
.el-divider--horizontal[data-v-
|
|
892
|
+
.el-divider--horizontal[data-v-3c23a172] {
|
|
915
893
|
margin: 12px 0;
|
|
916
894
|
}
|
|
917
|
-
.serviceflow-nodeView[data-v-
|
|
895
|
+
.serviceflow-nodeView[data-v-3c23a172] {
|
|
918
896
|
border: 1px solid #5a90f9;
|
|
919
|
-
background: #eef3fe;
|
|
897
|
+
background: #eef3fe;
|
|
898
|
+
width: 180px;
|
|
899
|
+
min-height: 95px;
|
|
920
900
|
}
|
|
921
|
-
.serviceflow-
|
|
922
|
-
width: 80px;
|
|
901
|
+
.serviceflow-nodeContent[data-v-3c23a172] {
|
|
923
902
|
}
|
|
924
|
-
.serviceflow-nodeView[data-v-
|
|
903
|
+
.serviceflow-nodeView[data-v-4d28d77b] {
|
|
925
904
|
box-sizing: border-box;
|
|
926
905
|
margin: 10px 10px;
|
|
927
906
|
width: 180px;
|
|
@@ -930,7 +909,7 @@
|
|
|
930
909
|
border-radius: 2px 2px 2px 2px;
|
|
931
910
|
padding: 20px 10px;
|
|
932
911
|
}
|
|
933
|
-
.serviceflow-nodeTitle[data-v-
|
|
912
|
+
.serviceflow-nodeTitle[data-v-4d28d77b] {
|
|
934
913
|
width: 90px;
|
|
935
914
|
height: 15px;
|
|
936
915
|
font-weight: 400;
|
|
@@ -946,7 +925,7 @@
|
|
|
946
925
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
947
926
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
948
927
|
}
|
|
949
|
-
.serviceflow-nodeContent[data-v-
|
|
928
|
+
.serviceflow-nodeContent[data-v-4d28d77b] {
|
|
950
929
|
/* width: 100%; */
|
|
951
930
|
height: 15px;
|
|
952
931
|
font-weight: 400;
|
|
@@ -962,39 +941,19 @@
|
|
|
962
941
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
963
942
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
964
943
|
}
|
|
965
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
944
|
+
.serviceflow-nodeContent-desc[data-v-4d28d77b] {
|
|
966
945
|
}
|
|
967
|
-
.el-divider--horizontal[data-v-
|
|
946
|
+
.el-divider--horizontal[data-v-4d28d77b] {
|
|
968
947
|
margin: 12px 0;
|
|
969
948
|
}
|
|
970
|
-
.serviceflow-nodeView[data-v-
|
|
949
|
+
.serviceflow-nodeView[data-v-4d28d77b] {
|
|
971
950
|
border: 1px solid #5a90f9;
|
|
972
951
|
background: #eef3fe;
|
|
973
952
|
}
|
|
974
|
-
.serviceflow-nodeTitle[data-v-
|
|
953
|
+
.serviceflow-nodeTitle[data-v-4d28d77b] {
|
|
975
954
|
width: 80px;
|
|
976
955
|
}
|
|
977
|
-
|
|
978
|
-
.aaa[data-v-8bd72b80] {
|
|
979
|
-
width: 300px;
|
|
980
|
-
height: 200px;
|
|
981
|
-
background: #ffffff;
|
|
982
|
-
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
983
|
-
border-radius: 2px 2px 2px 2px;
|
|
984
|
-
}
|
|
985
|
-
.content[data-v-8bd72b80] {
|
|
986
|
-
width: 28px;
|
|
987
|
-
height: 15px;
|
|
988
|
-
font-weight: 400;
|
|
989
|
-
font-size: 14px;
|
|
990
|
-
color: #333333;
|
|
991
|
-
line-height: 14px;
|
|
992
|
-
text-align: left;
|
|
993
|
-
font-style: normal;
|
|
994
|
-
text-transform: none;
|
|
995
|
-
padding: 5px 0px 4px 10px;
|
|
996
|
-
}
|
|
997
|
-
.serviceflow-nodeView[data-v-96d149c1] {
|
|
956
|
+
.serviceflow-nodeView[data-v-418f1558] {
|
|
998
957
|
box-sizing: border-box;
|
|
999
958
|
margin: 10px 10px;
|
|
1000
959
|
width: 180px;
|
|
@@ -1003,7 +962,7 @@
|
|
|
1003
962
|
border-radius: 2px 2px 2px 2px;
|
|
1004
963
|
padding: 20px 10px;
|
|
1005
964
|
}
|
|
1006
|
-
.serviceflow-nodeTitle[data-v-
|
|
965
|
+
.serviceflow-nodeTitle[data-v-418f1558] {
|
|
1007
966
|
width: 90px;
|
|
1008
967
|
height: 15px;
|
|
1009
968
|
font-weight: 400;
|
|
@@ -1019,7 +978,7 @@
|
|
|
1019
978
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1020
979
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1021
980
|
}
|
|
1022
|
-
.serviceflow-nodeContent[data-v-
|
|
981
|
+
.serviceflow-nodeContent[data-v-418f1558] {
|
|
1023
982
|
/* width: 100%; */
|
|
1024
983
|
height: 15px;
|
|
1025
984
|
font-weight: 400;
|
|
@@ -1035,19 +994,20 @@
|
|
|
1035
994
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1036
995
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1037
996
|
}
|
|
1038
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
997
|
+
.serviceflow-nodeContent-desc[data-v-418f1558] {
|
|
1039
998
|
}
|
|
1040
|
-
.el-divider--horizontal[data-v-
|
|
999
|
+
.el-divider--horizontal[data-v-418f1558] {
|
|
1041
1000
|
margin: 12px 0;
|
|
1042
1001
|
}
|
|
1043
|
-
.serviceflow-nodeView[data-v-
|
|
1002
|
+
.serviceflow-nodeView[data-v-418f1558] {
|
|
1044
1003
|
border: 1px solid #5a90f9;
|
|
1045
|
-
background: #eef3fe;
|
|
1004
|
+
background: #eef3fe;
|
|
1005
|
+
width: 180px;
|
|
1006
|
+
min-height: 95px;
|
|
1046
1007
|
}
|
|
1047
|
-
.serviceflow-
|
|
1048
|
-
width: 80px;
|
|
1008
|
+
.serviceflow-nodeContent[data-v-418f1558] {
|
|
1049
1009
|
}
|
|
1050
|
-
.serviceflow-nodeView[data-v-
|
|
1010
|
+
.serviceflow-nodeView[data-v-23f1c97b] {
|
|
1051
1011
|
box-sizing: border-box;
|
|
1052
1012
|
margin: 10px 10px;
|
|
1053
1013
|
width: 180px;
|
|
@@ -1056,7 +1016,7 @@
|
|
|
1056
1016
|
border-radius: 2px 2px 2px 2px;
|
|
1057
1017
|
padding: 20px 10px;
|
|
1058
1018
|
}
|
|
1059
|
-
.serviceflow-nodeTitle[data-v-
|
|
1019
|
+
.serviceflow-nodeTitle[data-v-23f1c97b] {
|
|
1060
1020
|
width: 90px;
|
|
1061
1021
|
height: 15px;
|
|
1062
1022
|
font-weight: 400;
|
|
@@ -1072,7 +1032,7 @@
|
|
|
1072
1032
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1073
1033
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1074
1034
|
}
|
|
1075
|
-
.serviceflow-nodeContent[data-v-
|
|
1035
|
+
.serviceflow-nodeContent[data-v-23f1c97b] {
|
|
1076
1036
|
/* width: 100%; */
|
|
1077
1037
|
height: 15px;
|
|
1078
1038
|
font-weight: 400;
|
|
@@ -1088,20 +1048,19 @@
|
|
|
1088
1048
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1089
1049
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1090
1050
|
}
|
|
1091
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
1051
|
+
.serviceflow-nodeContent-desc[data-v-23f1c97b] {
|
|
1092
1052
|
}
|
|
1093
|
-
.el-divider--horizontal[data-v-
|
|
1053
|
+
.el-divider--horizontal[data-v-23f1c97b] {
|
|
1094
1054
|
margin: 12px 0;
|
|
1095
1055
|
}
|
|
1096
|
-
.serviceflow-nodeView[data-v-
|
|
1056
|
+
.serviceflow-nodeView[data-v-23f1c97b] {
|
|
1097
1057
|
border: 1px solid #5a90f9;
|
|
1098
|
-
background: #eef3fe;
|
|
1099
|
-
width: 180px;
|
|
1100
|
-
min-height: 95px;
|
|
1058
|
+
background: #eef3fe;
|
|
1101
1059
|
}
|
|
1102
|
-
.serviceflow-
|
|
1060
|
+
.serviceflow-nodeTitle[data-v-23f1c97b] {
|
|
1061
|
+
width: 80px;
|
|
1103
1062
|
}
|
|
1104
|
-
.serviceflow-nodeView[data-v-
|
|
1063
|
+
.serviceflow-nodeView[data-v-96d149c1] {
|
|
1105
1064
|
box-sizing: border-box;
|
|
1106
1065
|
margin: 10px 10px;
|
|
1107
1066
|
width: 180px;
|
|
@@ -1110,7 +1069,7 @@
|
|
|
1110
1069
|
border-radius: 2px 2px 2px 2px;
|
|
1111
1070
|
padding: 20px 10px;
|
|
1112
1071
|
}
|
|
1113
|
-
.serviceflow-nodeTitle[data-v-
|
|
1072
|
+
.serviceflow-nodeTitle[data-v-96d149c1] {
|
|
1114
1073
|
width: 90px;
|
|
1115
1074
|
height: 15px;
|
|
1116
1075
|
font-weight: 400;
|
|
@@ -1126,7 +1085,7 @@
|
|
|
1126
1085
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1127
1086
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1128
1087
|
}
|
|
1129
|
-
.serviceflow-nodeContent[data-v-
|
|
1088
|
+
.serviceflow-nodeContent[data-v-96d149c1] {
|
|
1130
1089
|
/* width: 100%; */
|
|
1131
1090
|
height: 15px;
|
|
1132
1091
|
font-weight: 400;
|
|
@@ -1142,19 +1101,40 @@
|
|
|
1142
1101
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1143
1102
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1144
1103
|
}
|
|
1145
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
1104
|
+
.serviceflow-nodeContent-desc[data-v-96d149c1] {
|
|
1146
1105
|
}
|
|
1147
|
-
.el-divider--horizontal[data-v-
|
|
1106
|
+
.el-divider--horizontal[data-v-96d149c1] {
|
|
1148
1107
|
margin: 12px 0;
|
|
1149
1108
|
}
|
|
1150
|
-
.serviceflow-nodeView[data-v-
|
|
1109
|
+
.serviceflow-nodeView[data-v-96d149c1] {
|
|
1151
1110
|
border: 1px solid #5a90f9;
|
|
1152
1111
|
background: #eef3fe;
|
|
1153
1112
|
}
|
|
1154
|
-
.serviceflow-nodeTitle[data-v-
|
|
1113
|
+
.serviceflow-nodeTitle[data-v-96d149c1] {
|
|
1155
1114
|
width: 80px;
|
|
1156
1115
|
}
|
|
1157
|
-
|
|
1116
|
+
|
|
1117
|
+
.node-content[data-v-669b618f] {
|
|
1118
|
+
width: 120px;
|
|
1119
|
+
height: 44px;
|
|
1120
|
+
background: #ffffff;
|
|
1121
|
+
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
1122
|
+
border-radius: 2px 2px 2px 2px;
|
|
1123
|
+
}
|
|
1124
|
+
.content[data-v-669b618f] {
|
|
1125
|
+
width: 28px;
|
|
1126
|
+
height: 15px;
|
|
1127
|
+
font-weight: 400;
|
|
1128
|
+
font-size: 14px;
|
|
1129
|
+
color: #333333;
|
|
1130
|
+
line-height: 14px;
|
|
1131
|
+
text-align: left;
|
|
1132
|
+
font-style: normal;
|
|
1133
|
+
text-transform: none;
|
|
1134
|
+
padding: 5px 0px 4px 10px;
|
|
1135
|
+
box-sizing: content-box;
|
|
1136
|
+
}
|
|
1137
|
+
.serviceflow-nodeView[data-v-1519c141] {
|
|
1158
1138
|
box-sizing: border-box;
|
|
1159
1139
|
margin: 10px 10px;
|
|
1160
1140
|
width: 180px;
|
|
@@ -1163,7 +1143,7 @@
|
|
|
1163
1143
|
border-radius: 2px 2px 2px 2px;
|
|
1164
1144
|
padding: 20px 10px;
|
|
1165
1145
|
}
|
|
1166
|
-
.serviceflow-nodeTitle[data-v-
|
|
1146
|
+
.serviceflow-nodeTitle[data-v-1519c141] {
|
|
1167
1147
|
width: 90px;
|
|
1168
1148
|
height: 15px;
|
|
1169
1149
|
font-weight: 400;
|
|
@@ -1179,7 +1159,7 @@
|
|
|
1179
1159
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1180
1160
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1181
1161
|
}
|
|
1182
|
-
.serviceflow-nodeContent[data-v-
|
|
1162
|
+
.serviceflow-nodeContent[data-v-1519c141] {
|
|
1183
1163
|
/* width: 100%; */
|
|
1184
1164
|
height: 15px;
|
|
1185
1165
|
font-weight: 400;
|
|
@@ -1195,19 +1175,39 @@
|
|
|
1195
1175
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1196
1176
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1197
1177
|
}
|
|
1198
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
1178
|
+
.serviceflow-nodeContent-desc[data-v-1519c141] {
|
|
1199
1179
|
}
|
|
1200
|
-
.el-divider--horizontal[data-v-
|
|
1180
|
+
.el-divider--horizontal[data-v-1519c141] {
|
|
1201
1181
|
margin: 12px 0;
|
|
1202
1182
|
}
|
|
1203
|
-
.serviceflow-nodeView[data-v-
|
|
1183
|
+
.serviceflow-nodeView[data-v-1519c141] {
|
|
1204
1184
|
border: 1px solid #5a90f9;
|
|
1205
1185
|
background: #eef3fe;
|
|
1206
1186
|
}
|
|
1207
|
-
.serviceflow-nodeTitle[data-v-
|
|
1187
|
+
.serviceflow-nodeTitle[data-v-1519c141] {
|
|
1208
1188
|
width: 80px;
|
|
1209
1189
|
}
|
|
1210
|
-
|
|
1190
|
+
|
|
1191
|
+
.aaa[data-v-8bd72b80] {
|
|
1192
|
+
width: 300px;
|
|
1193
|
+
height: 200px;
|
|
1194
|
+
background: #ffffff;
|
|
1195
|
+
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
1196
|
+
border-radius: 2px 2px 2px 2px;
|
|
1197
|
+
}
|
|
1198
|
+
.content[data-v-8bd72b80] {
|
|
1199
|
+
width: 28px;
|
|
1200
|
+
height: 15px;
|
|
1201
|
+
font-weight: 400;
|
|
1202
|
+
font-size: 14px;
|
|
1203
|
+
color: #333333;
|
|
1204
|
+
line-height: 14px;
|
|
1205
|
+
text-align: left;
|
|
1206
|
+
font-style: normal;
|
|
1207
|
+
text-transform: none;
|
|
1208
|
+
padding: 5px 0px 4px 10px;
|
|
1209
|
+
}
|
|
1210
|
+
.serviceflow-nodeView[data-v-42ce3f17] {
|
|
1211
1211
|
box-sizing: border-box;
|
|
1212
1212
|
margin: 10px 10px;
|
|
1213
1213
|
width: 180px;
|
|
@@ -1216,7 +1216,7 @@
|
|
|
1216
1216
|
border-radius: 2px 2px 2px 2px;
|
|
1217
1217
|
padding: 20px 10px;
|
|
1218
1218
|
}
|
|
1219
|
-
.serviceflow-nodeTitle[data-v-
|
|
1219
|
+
.serviceflow-nodeTitle[data-v-42ce3f17] {
|
|
1220
1220
|
width: 90px;
|
|
1221
1221
|
height: 15px;
|
|
1222
1222
|
font-weight: 400;
|
|
@@ -1232,7 +1232,7 @@
|
|
|
1232
1232
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1233
1233
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1234
1234
|
}
|
|
1235
|
-
.serviceflow-nodeContent[data-v-
|
|
1235
|
+
.serviceflow-nodeContent[data-v-42ce3f17] {
|
|
1236
1236
|
/* width: 100%; */
|
|
1237
1237
|
height: 15px;
|
|
1238
1238
|
font-weight: 400;
|
|
@@ -1248,31 +1248,28 @@
|
|
|
1248
1248
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1249
1249
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1250
1250
|
}
|
|
1251
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
1251
|
+
.serviceflow-nodeContent-desc[data-v-42ce3f17] {
|
|
1252
1252
|
}
|
|
1253
|
-
.el-divider--horizontal[data-v-
|
|
1253
|
+
.el-divider--horizontal[data-v-42ce3f17] {
|
|
1254
1254
|
margin: 12px 0;
|
|
1255
1255
|
}
|
|
1256
|
-
.serviceflow-nodeView[data-v-
|
|
1256
|
+
.serviceflow-nodeView[data-v-42ce3f17] {
|
|
1257
1257
|
border: 1px solid #5a90f9;
|
|
1258
1258
|
background: #eef3fe;
|
|
1259
1259
|
}
|
|
1260
|
-
.serviceflow-nodeTitle[data-v-
|
|
1260
|
+
.serviceflow-nodeTitle[data-v-42ce3f17] {
|
|
1261
1261
|
width: 80px;
|
|
1262
1262
|
}
|
|
1263
1263
|
|
|
1264
|
-
.el-
|
|
1265
|
-
margin-
|
|
1266
|
-
}
|
|
1267
|
-
.el-input + .el-input[data-v-b53b2895] {
|
|
1268
|
-
margin-left: 10px;
|
|
1269
|
-
}
|
|
1270
|
-
.el-input + .el-button[data-v-b53b2895] {
|
|
1271
|
-
margin-left: 10px;
|
|
1264
|
+
.el-radio[data-v-1bbd6187] {
|
|
1265
|
+
margin-right: 10px;
|
|
1272
1266
|
}
|
|
1273
1267
|
|
|
1274
|
-
.el-radio[data-v-
|
|
1268
|
+
.el-radio[data-v-1ee0eb33] {
|
|
1275
1269
|
margin-right: 10px;
|
|
1270
|
+
}
|
|
1271
|
+
[data-v-1ee0eb33] .el-empty__description {
|
|
1272
|
+
margin-top: 0px;
|
|
1276
1273
|
}
|
|
1277
1274
|
|
|
1278
1275
|
.el-select + .el-input[data-v-7fcf8a84] {
|
|
@@ -1285,11 +1282,14 @@
|
|
|
1285
1282
|
margin-left: 10px;
|
|
1286
1283
|
}
|
|
1287
1284
|
|
|
1288
|
-
.el-
|
|
1289
|
-
margin-
|
|
1285
|
+
.el-select + .el-input[data-v-b53b2895] {
|
|
1286
|
+
margin-left: 10px;
|
|
1290
1287
|
}
|
|
1291
|
-
[data-v-
|
|
1292
|
-
margin-
|
|
1288
|
+
.el-input + .el-input[data-v-b53b2895] {
|
|
1289
|
+
margin-left: 10px;
|
|
1290
|
+
}
|
|
1291
|
+
.el-input + .el-button[data-v-b53b2895] {
|
|
1292
|
+
margin-left: 10px;
|
|
1293
1293
|
}
|
|
1294
1294
|
|
|
1295
1295
|
[data-v-9cc733d7] .el-cascader-menu {
|
|
@@ -1306,13 +1306,13 @@
|
|
|
1306
1306
|
cursor: pointer;
|
|
1307
1307
|
}
|
|
1308
1308
|
|
|
1309
|
+
[data-v-9a3ee19e] .el-dropdown {
|
|
1310
|
+
vertical-align: middle;
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1309
1313
|
[data-v-2d06523b] .el-upload {
|
|
1310
1314
|
width: 100%;
|
|
1311
1315
|
}
|
|
1312
1316
|
[data-v-2d06523b] .el-button {
|
|
1313
1317
|
width: 100%;
|
|
1314
1318
|
}
|
|
1315
|
-
|
|
1316
|
-
[data-v-9a3ee19e] .el-dropdown {
|
|
1317
|
-
vertical-align: middle;
|
|
1318
|
-
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "service-flow-designer",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.43",
|
|
4
4
|
"description": "AgileBuilder Service Flow Designer",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/es/index.js",
|
|
@@ -61,9 +61,10 @@
|
|
|
61
61
|
"@logicflow/layout": "1.2.0-alpha.16",
|
|
62
62
|
"@uiw/codemirror-themes-all": "^4.21.25",
|
|
63
63
|
"@vueuse/core": "^10.9.0",
|
|
64
|
-
"agilebuilder-ui": "1.0.
|
|
64
|
+
"agilebuilder-ui": "1.0.82",
|
|
65
65
|
"codemirror": "^6.0.1",
|
|
66
66
|
"nprogress": "^0.2.0",
|
|
67
|
+
"pinia": "^2.1.7",
|
|
67
68
|
"quill": "^2.0.2",
|
|
68
69
|
"quill-delta": "5.1.0",
|
|
69
70
|
"uuid": "^8.2.0"
|