service-flow-designer 2.1.39 → 2.1.46
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
|
@@ -22,6 +22,47 @@
|
|
|
22
22
|
[data-v-7117ba9e] .el-overlay {
|
|
23
23
|
position: static;
|
|
24
24
|
}
|
|
25
|
+
|
|
26
|
+
.amb-design-assembly-content[data-v-59e0837d] {
|
|
27
|
+
background: #ffffff;
|
|
28
|
+
box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.05);
|
|
29
|
+
height: 100%;
|
|
30
|
+
padding-left: 10px;
|
|
31
|
+
padding-right: 10px;
|
|
32
|
+
overflow: auto;
|
|
33
|
+
}
|
|
34
|
+
/*控制滚动条宽度*/
|
|
35
|
+
.amb-design-assembly-content[data-v-59e0837d]::-webkit-scrollbar {
|
|
36
|
+
width: 1px;
|
|
37
|
+
}
|
|
38
|
+
.amb-assembly-header[data-v-59e0837d] {
|
|
39
|
+
position: absolute;
|
|
40
|
+
width: 220px;
|
|
41
|
+
text-align: center;
|
|
42
|
+
padding: 18px 0px 10px 0px;
|
|
43
|
+
padding-bottom: 14px;
|
|
44
|
+
background-color: #ffffff;
|
|
45
|
+
}
|
|
46
|
+
.amb-assembly-header-type[data-v-59e0837d] {
|
|
47
|
+
border-radius: 100px 100px 100px 100px;
|
|
48
|
+
background: #ffffff;
|
|
49
|
+
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
|
|
50
|
+
padding: 10px;
|
|
51
|
+
padding-bottom: 12px;
|
|
52
|
+
}
|
|
53
|
+
.amb-assembly-header-type > label[data-v-59e0837d] {
|
|
54
|
+
padding: 4px 14px;
|
|
55
|
+
cursor: pointer;
|
|
56
|
+
font-size: 14px;
|
|
57
|
+
}
|
|
58
|
+
.amb-assembly-header-type > label.selected[data-v-59e0837d] {
|
|
59
|
+
border-radius: 100px 100px 100px 100px;
|
|
60
|
+
background: #5893ef;
|
|
61
|
+
color: #ffffff;
|
|
62
|
+
}
|
|
63
|
+
.amb-design-assembly-list[data-v-59e0837d] {
|
|
64
|
+
padding-top: 80px;
|
|
65
|
+
}
|
|
25
66
|
.serviceflow-design-content[data-v-04746c34] {
|
|
26
67
|
overflow: auto;
|
|
27
68
|
display: block;
|
|
@@ -126,47 +167,6 @@
|
|
|
126
167
|
border-color: transparent transparent var(--el-skeleton-color) transparent;
|
|
127
168
|
}
|
|
128
169
|
|
|
129
|
-
.amb-design-assembly-content[data-v-59e0837d] {
|
|
130
|
-
background: #ffffff;
|
|
131
|
-
box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.05);
|
|
132
|
-
height: 100%;
|
|
133
|
-
padding-left: 10px;
|
|
134
|
-
padding-right: 10px;
|
|
135
|
-
overflow: auto;
|
|
136
|
-
}
|
|
137
|
-
/*控制滚动条宽度*/
|
|
138
|
-
.amb-design-assembly-content[data-v-59e0837d]::-webkit-scrollbar {
|
|
139
|
-
width: 1px;
|
|
140
|
-
}
|
|
141
|
-
.amb-assembly-header[data-v-59e0837d] {
|
|
142
|
-
position: absolute;
|
|
143
|
-
width: 220px;
|
|
144
|
-
text-align: center;
|
|
145
|
-
padding: 18px 0px 10px 0px;
|
|
146
|
-
padding-bottom: 14px;
|
|
147
|
-
background-color: #ffffff;
|
|
148
|
-
}
|
|
149
|
-
.amb-assembly-header-type[data-v-59e0837d] {
|
|
150
|
-
border-radius: 100px 100px 100px 100px;
|
|
151
|
-
background: #ffffff;
|
|
152
|
-
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
|
|
153
|
-
padding: 10px;
|
|
154
|
-
padding-bottom: 12px;
|
|
155
|
-
}
|
|
156
|
-
.amb-assembly-header-type > label[data-v-59e0837d] {
|
|
157
|
-
padding: 4px 14px;
|
|
158
|
-
cursor: pointer;
|
|
159
|
-
font-size: 14px;
|
|
160
|
-
}
|
|
161
|
-
.amb-assembly-header-type > label.selected[data-v-59e0837d] {
|
|
162
|
-
border-radius: 100px 100px 100px 100px;
|
|
163
|
-
background: #5893ef;
|
|
164
|
-
color: #ffffff;
|
|
165
|
-
}
|
|
166
|
-
.amb-design-assembly-list[data-v-59e0837d] {
|
|
167
|
-
padding-top: 80px;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
170
|
.editorTool[data-v-d55ab098] {
|
|
171
171
|
margin-left: auto;
|
|
172
172
|
}
|
|
@@ -184,27 +184,17 @@
|
|
|
184
184
|
margin-top: 10px;
|
|
185
185
|
}
|
|
186
186
|
|
|
187
|
-
[data-v-
|
|
187
|
+
[data-v-6fdf85a5] .el-radio {
|
|
188
188
|
margin: 0;
|
|
189
189
|
}
|
|
190
|
-
.el-radio + .el-radio[data-v-
|
|
190
|
+
.el-radio + .el-radio[data-v-6fdf85a5] {
|
|
191
191
|
margin-left: 10px;
|
|
192
192
|
}
|
|
193
193
|
|
|
194
|
-
.el-alert + .el-table[data-v-
|
|
195
|
-
margin-top: 10px;
|
|
196
|
-
}
|
|
197
|
-
.el-table + .el-alert[data-v-e27c4c1e] {
|
|
198
|
-
margin: 10px 0;
|
|
199
|
-
}
|
|
200
|
-
.el-alert + .el-form-item[data-v-e27c4c1e] {
|
|
201
|
-
margin-top: 10px;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
.el-alert + .el-form-item[data-v-32875028] {
|
|
194
|
+
.el-alert + .el-table[data-v-028fb838] {
|
|
205
195
|
margin-top: 10px;
|
|
206
196
|
}
|
|
207
|
-
.el-
|
|
197
|
+
.el-table + .el-alert[data-v-028fb838] {
|
|
208
198
|
margin: 10px 0;
|
|
209
199
|
}
|
|
210
200
|
|
|
@@ -221,20 +211,35 @@
|
|
|
221
211
|
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
222
212
|
}
|
|
223
213
|
|
|
224
|
-
.el-alert + .el-table[data-v-
|
|
214
|
+
.el-alert + .el-table[data-v-82e0dfef] {
|
|
225
215
|
margin-top: 10px;
|
|
226
216
|
}
|
|
227
|
-
.el-
|
|
228
|
-
margin: 10px
|
|
217
|
+
.el-alert + .el-form-item[data-v-82e0dfef] {
|
|
218
|
+
margin-top: 10px;
|
|
229
219
|
}
|
|
230
220
|
|
|
231
|
-
.el-
|
|
221
|
+
.el-dialog__wrapper[data-v-7a4cbbaf] {
|
|
222
|
+
overflow: hidden !important;
|
|
223
|
+
padding-right: 0 !important;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.el-alert + .el-table[data-v-e27c4c1e] {
|
|
232
227
|
margin-top: 10px;
|
|
233
228
|
}
|
|
234
|
-
.el-
|
|
229
|
+
.el-table + .el-alert[data-v-e27c4c1e] {
|
|
230
|
+
margin: 10px 0;
|
|
231
|
+
}
|
|
232
|
+
.el-alert + .el-form-item[data-v-e27c4c1e] {
|
|
235
233
|
margin-top: 10px;
|
|
236
234
|
}
|
|
237
235
|
|
|
236
|
+
[data-v-dac15197] .el-radio {
|
|
237
|
+
margin: 0;
|
|
238
|
+
}
|
|
239
|
+
.el-radio + .el-radio[data-v-dac15197] {
|
|
240
|
+
margin-left: 10px;
|
|
241
|
+
}
|
|
242
|
+
|
|
238
243
|
.el-alert + .el-table[data-v-d978e7dc] {
|
|
239
244
|
margin-top: 10px;
|
|
240
245
|
}
|
|
@@ -252,11 +257,47 @@
|
|
|
252
257
|
margin-top: 10px;
|
|
253
258
|
}
|
|
254
259
|
|
|
255
|
-
[data-v-
|
|
256
|
-
margin:
|
|
260
|
+
.el-alert + .el-form-item[data-v-32875028] {
|
|
261
|
+
margin-top: 10px;
|
|
257
262
|
}
|
|
258
|
-
.el-
|
|
259
|
-
margin
|
|
263
|
+
.el-alert + .el-table[data-v-32875028] {
|
|
264
|
+
margin: 10px 0;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
[data-v-286d914e] .el-table__row {
|
|
268
|
+
cursor: pointer;
|
|
269
|
+
}
|
|
270
|
+
/** 右键菜单样式 */
|
|
271
|
+
.context-menu[data-v-286d914e] {
|
|
272
|
+
position: absolute;
|
|
273
|
+
background: #fff;
|
|
274
|
+
z-index: 999;
|
|
275
|
+
margin: 5;
|
|
276
|
+
padding: 8px 8px;
|
|
277
|
+
box-shadow: 0 5px 7px 1px rgba(0, 0, 0, 0.1);
|
|
278
|
+
border: 1px solid #bbbbbb;
|
|
279
|
+
border-radius: 10px;
|
|
280
|
+
font-size: 14px;
|
|
281
|
+
}
|
|
282
|
+
.context-menu li[data-v-286d914e] {
|
|
283
|
+
list-style-type: none;
|
|
284
|
+
min-width: 75px;
|
|
285
|
+
line-height: 28px;
|
|
286
|
+
text-align: left;
|
|
287
|
+
border-radius: 5px;
|
|
288
|
+
padding-left: 5px;
|
|
289
|
+
cursor: pointer;
|
|
290
|
+
}
|
|
291
|
+
.context-menu li[data-v-286d914e]:hover {
|
|
292
|
+
background: #0165e1;
|
|
293
|
+
color: #fff;
|
|
294
|
+
}
|
|
295
|
+
/** 右键菜单样式 */
|
|
296
|
+
.custom-tree-node[data-v-286d914e] {
|
|
297
|
+
font-size: 14px;
|
|
298
|
+
padding-right: 8px;
|
|
299
|
+
display: flex; /* 使用Flex布局 */
|
|
300
|
+
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
260
301
|
}
|
|
261
302
|
.serviceflow-control-item[data-v-a2bd7452] {
|
|
262
303
|
top: -5px;
|
|
@@ -389,10 +430,71 @@
|
|
|
389
430
|
outline: none;
|
|
390
431
|
margin-left: 50px;
|
|
391
432
|
}
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
433
|
+
.serviceflow-attr-base-content[data-v-8bad091d] {
|
|
434
|
+
background: #ffffff;
|
|
435
|
+
box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.05);
|
|
436
|
+
height: 100%;
|
|
437
|
+
padding-left: 10px;
|
|
438
|
+
padding-right: 10px;
|
|
439
|
+
overflow: auto;
|
|
440
|
+
}
|
|
441
|
+
.serviceflow-attr-item[data-v-8bad091d] {
|
|
442
|
+
margin-bottom: 8px;
|
|
443
|
+
}
|
|
444
|
+
.serviceflow-attr-group-header > button[data-v-8bad091d] {
|
|
445
|
+
background: #f5f6f8;
|
|
446
|
+
padding-left: 10px;
|
|
447
|
+
font-size: 14px;
|
|
448
|
+
height: 42px;
|
|
449
|
+
}
|
|
450
|
+
.serviceflow-attr-content[data-v-8bad091d] {
|
|
451
|
+
background: #ffffff;
|
|
452
|
+
box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.05);
|
|
453
|
+
height: 100%;
|
|
454
|
+
padding-left: 10px;
|
|
455
|
+
padding-right: 10px;
|
|
456
|
+
overflow: auto;
|
|
457
|
+
position: relative;
|
|
458
|
+
}
|
|
459
|
+
.serviceflow-attr-header-search[data-v-8bad091d] {
|
|
460
|
+
margin-top: 16px;
|
|
461
|
+
}
|
|
462
|
+
.serviceflow-attr-header-select[data-v-8bad091d] {
|
|
463
|
+
width: 90px;
|
|
464
|
+
height: 36px;
|
|
465
|
+
}
|
|
466
|
+
.serviceflow-page-param-row[data-v-8bad091d] {
|
|
467
|
+
height: 34px;
|
|
468
|
+
}
|
|
469
|
+
.el-table__cell > .cell[data-v-8bad091d] {
|
|
470
|
+
white-space: nowrap !important;
|
|
471
|
+
}
|
|
472
|
+
.serviceflow-item[data-v-8bad091d] {
|
|
473
|
+
background: rgba(88, 147, 239, 0.06);
|
|
474
|
+
border: 1px dashed rgba(88, 147, 239, 0.06);
|
|
475
|
+
border-radius: 4px 4px 4px 4px;
|
|
476
|
+
text-align: center;
|
|
477
|
+
margin-top: 12px;
|
|
478
|
+
padding: 10px 5px 10px 5px;
|
|
479
|
+
font-size: 12px;
|
|
480
|
+
cursor: move;
|
|
481
|
+
height: 60px;
|
|
482
|
+
overflow: hidden;
|
|
483
|
+
box-sizing: border-box;
|
|
484
|
+
color: #333333;
|
|
485
|
+
text-overflow: ellipsis;
|
|
486
|
+
white-space: nowrap;
|
|
487
|
+
-webkit-user-select: none; /* Safari */
|
|
488
|
+
-moz-user-select: none; /* Firefox */
|
|
489
|
+
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
490
|
+
user-select: none; /* 标准语法 */
|
|
491
|
+
}
|
|
492
|
+
.serviceflow-item[data-v-8bad091d]:hover {
|
|
493
|
+
background: rgba(11, 45, 101, 0.105);
|
|
494
|
+
border: 1px dashed rgba(11, 45, 101, 0.227);
|
|
495
|
+
}
|
|
496
|
+
.amb-assembly-item-drag[data-v-8bad091d] {
|
|
497
|
+
opacity: 1 !important;
|
|
396
498
|
}
|
|
397
499
|
|
|
398
500
|
.el-drawer__header {
|
|
@@ -404,7 +506,28 @@
|
|
|
404
506
|
[data-v-d5185214] .el-overlay {
|
|
405
507
|
position: static;
|
|
406
508
|
}
|
|
407
|
-
|
|
509
|
+
|
|
510
|
+
.node-content[data-v-669b618f] {
|
|
511
|
+
width: 120px;
|
|
512
|
+
height: 44px;
|
|
513
|
+
background: #ffffff;
|
|
514
|
+
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
515
|
+
border-radius: 2px 2px 2px 2px;
|
|
516
|
+
}
|
|
517
|
+
.content[data-v-669b618f] {
|
|
518
|
+
width: 28px;
|
|
519
|
+
height: 15px;
|
|
520
|
+
font-weight: 400;
|
|
521
|
+
font-size: 14px;
|
|
522
|
+
color: #333333;
|
|
523
|
+
line-height: 14px;
|
|
524
|
+
text-align: left;
|
|
525
|
+
font-style: normal;
|
|
526
|
+
text-transform: none;
|
|
527
|
+
padding: 5px 0px 4px 10px;
|
|
528
|
+
box-sizing: content-box;
|
|
529
|
+
}
|
|
530
|
+
.serviceflow-nodeView[data-v-23f1c97b] {
|
|
408
531
|
box-sizing: border-box;
|
|
409
532
|
margin: 10px 10px;
|
|
410
533
|
width: 180px;
|
|
@@ -413,7 +536,7 @@
|
|
|
413
536
|
border-radius: 2px 2px 2px 2px;
|
|
414
537
|
padding: 20px 10px;
|
|
415
538
|
}
|
|
416
|
-
.serviceflow-nodeTitle[data-v-
|
|
539
|
+
.serviceflow-nodeTitle[data-v-23f1c97b] {
|
|
417
540
|
width: 90px;
|
|
418
541
|
height: 15px;
|
|
419
542
|
font-weight: 400;
|
|
@@ -429,7 +552,7 @@
|
|
|
429
552
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
430
553
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
431
554
|
}
|
|
432
|
-
.serviceflow-nodeContent[data-v-
|
|
555
|
+
.serviceflow-nodeContent[data-v-23f1c97b] {
|
|
433
556
|
/* width: 100%; */
|
|
434
557
|
height: 15px;
|
|
435
558
|
font-weight: 400;
|
|
@@ -445,55 +568,19 @@
|
|
|
445
568
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
446
569
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
447
570
|
}
|
|
448
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
571
|
+
.serviceflow-nodeContent-desc[data-v-23f1c97b] {
|
|
449
572
|
}
|
|
450
|
-
.el-divider--horizontal[data-v-
|
|
573
|
+
.el-divider--horizontal[data-v-23f1c97b] {
|
|
451
574
|
margin: 12px 0;
|
|
452
575
|
}
|
|
453
|
-
.serviceflow-nodeView[data-v-
|
|
576
|
+
.serviceflow-nodeView[data-v-23f1c97b] {
|
|
454
577
|
border: 1px solid #5a90f9;
|
|
455
578
|
background: #eef3fe;
|
|
456
579
|
}
|
|
457
|
-
.serviceflow-nodeTitle[data-v-
|
|
580
|
+
.serviceflow-nodeTitle[data-v-23f1c97b] {
|
|
458
581
|
width: 80px;
|
|
459
582
|
}
|
|
460
|
-
|
|
461
|
-
[data-v-286d914e] .el-table__row {
|
|
462
|
-
cursor: pointer;
|
|
463
|
-
}
|
|
464
|
-
/** 右键菜单样式 */
|
|
465
|
-
.context-menu[data-v-286d914e] {
|
|
466
|
-
position: absolute;
|
|
467
|
-
background: #fff;
|
|
468
|
-
z-index: 999;
|
|
469
|
-
margin: 5;
|
|
470
|
-
padding: 8px 8px;
|
|
471
|
-
box-shadow: 0 5px 7px 1px rgba(0, 0, 0, 0.1);
|
|
472
|
-
border: 1px solid #bbbbbb;
|
|
473
|
-
border-radius: 10px;
|
|
474
|
-
font-size: 14px;
|
|
475
|
-
}
|
|
476
|
-
.context-menu li[data-v-286d914e] {
|
|
477
|
-
list-style-type: none;
|
|
478
|
-
min-width: 75px;
|
|
479
|
-
line-height: 28px;
|
|
480
|
-
text-align: left;
|
|
481
|
-
border-radius: 5px;
|
|
482
|
-
padding-left: 5px;
|
|
483
|
-
cursor: pointer;
|
|
484
|
-
}
|
|
485
|
-
.context-menu li[data-v-286d914e]:hover {
|
|
486
|
-
background: #0165e1;
|
|
487
|
-
color: #fff;
|
|
488
|
-
}
|
|
489
|
-
/** 右键菜单样式 */
|
|
490
|
-
.custom-tree-node[data-v-286d914e] {
|
|
491
|
-
font-size: 14px;
|
|
492
|
-
padding-right: 8px;
|
|
493
|
-
display: flex; /* 使用Flex布局 */
|
|
494
|
-
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
495
|
-
}
|
|
496
|
-
.serviceflow-nodeView[data-v-3c23a172] {
|
|
583
|
+
.serviceflow-nodeView[data-v-4d28d77b] {
|
|
497
584
|
box-sizing: border-box;
|
|
498
585
|
margin: 10px 10px;
|
|
499
586
|
width: 180px;
|
|
@@ -502,7 +589,7 @@
|
|
|
502
589
|
border-radius: 2px 2px 2px 2px;
|
|
503
590
|
padding: 20px 10px;
|
|
504
591
|
}
|
|
505
|
-
.serviceflow-nodeTitle[data-v-
|
|
592
|
+
.serviceflow-nodeTitle[data-v-4d28d77b] {
|
|
506
593
|
width: 90px;
|
|
507
594
|
height: 15px;
|
|
508
595
|
font-weight: 400;
|
|
@@ -518,7 +605,7 @@
|
|
|
518
605
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
519
606
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
520
607
|
}
|
|
521
|
-
.serviceflow-nodeContent[data-v-
|
|
608
|
+
.serviceflow-nodeContent[data-v-4d28d77b] {
|
|
522
609
|
/* width: 100%; */
|
|
523
610
|
height: 15px;
|
|
524
611
|
font-weight: 400;
|
|
@@ -534,86 +621,19 @@
|
|
|
534
621
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
535
622
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
536
623
|
}
|
|
537
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
624
|
+
.serviceflow-nodeContent-desc[data-v-4d28d77b] {
|
|
538
625
|
}
|
|
539
|
-
.el-divider--horizontal[data-v-
|
|
626
|
+
.el-divider--horizontal[data-v-4d28d77b] {
|
|
540
627
|
margin: 12px 0;
|
|
541
628
|
}
|
|
542
|
-
.serviceflow-nodeView[data-v-
|
|
629
|
+
.serviceflow-nodeView[data-v-4d28d77b] {
|
|
543
630
|
border: 1px solid #5a90f9;
|
|
544
|
-
background: #eef3fe;
|
|
545
|
-
width: 180px;
|
|
546
|
-
min-height: 95px;
|
|
547
|
-
}
|
|
548
|
-
.serviceflow-nodeContent[data-v-3c23a172] {
|
|
549
|
-
}
|
|
550
|
-
.serviceflow-attr-base-content[data-v-8bad091d] {
|
|
551
|
-
background: #ffffff;
|
|
552
|
-
box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.05);
|
|
553
|
-
height: 100%;
|
|
554
|
-
padding-left: 10px;
|
|
555
|
-
padding-right: 10px;
|
|
556
|
-
overflow: auto;
|
|
557
|
-
}
|
|
558
|
-
.serviceflow-attr-item[data-v-8bad091d] {
|
|
559
|
-
margin-bottom: 8px;
|
|
560
|
-
}
|
|
561
|
-
.serviceflow-attr-group-header > button[data-v-8bad091d] {
|
|
562
|
-
background: #f5f6f8;
|
|
563
|
-
padding-left: 10px;
|
|
564
|
-
font-size: 14px;
|
|
565
|
-
height: 42px;
|
|
566
|
-
}
|
|
567
|
-
.serviceflow-attr-content[data-v-8bad091d] {
|
|
568
|
-
background: #ffffff;
|
|
569
|
-
box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.05);
|
|
570
|
-
height: 100%;
|
|
571
|
-
padding-left: 10px;
|
|
572
|
-
padding-right: 10px;
|
|
573
|
-
overflow: auto;
|
|
574
|
-
position: relative;
|
|
575
|
-
}
|
|
576
|
-
.serviceflow-attr-header-search[data-v-8bad091d] {
|
|
577
|
-
margin-top: 16px;
|
|
578
|
-
}
|
|
579
|
-
.serviceflow-attr-header-select[data-v-8bad091d] {
|
|
580
|
-
width: 90px;
|
|
581
|
-
height: 36px;
|
|
582
|
-
}
|
|
583
|
-
.serviceflow-page-param-row[data-v-8bad091d] {
|
|
584
|
-
height: 34px;
|
|
585
|
-
}
|
|
586
|
-
.el-table__cell > .cell[data-v-8bad091d] {
|
|
587
|
-
white-space: nowrap !important;
|
|
588
|
-
}
|
|
589
|
-
.serviceflow-item[data-v-8bad091d] {
|
|
590
|
-
background: rgba(88, 147, 239, 0.06);
|
|
591
|
-
border: 1px dashed rgba(88, 147, 239, 0.06);
|
|
592
|
-
border-radius: 4px 4px 4px 4px;
|
|
593
|
-
text-align: center;
|
|
594
|
-
margin-top: 12px;
|
|
595
|
-
padding: 10px 5px 10px 5px;
|
|
596
|
-
font-size: 12px;
|
|
597
|
-
cursor: move;
|
|
598
|
-
height: 60px;
|
|
599
|
-
overflow: hidden;
|
|
600
|
-
box-sizing: border-box;
|
|
601
|
-
color: #333333;
|
|
602
|
-
text-overflow: ellipsis;
|
|
603
|
-
white-space: nowrap;
|
|
604
|
-
-webkit-user-select: none; /* Safari */
|
|
605
|
-
-moz-user-select: none; /* Firefox */
|
|
606
|
-
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
607
|
-
user-select: none; /* 标准语法 */
|
|
608
|
-
}
|
|
609
|
-
.serviceflow-item[data-v-8bad091d]:hover {
|
|
610
|
-
background: rgba(11, 45, 101, 0.105);
|
|
611
|
-
border: 1px dashed rgba(11, 45, 101, 0.227);
|
|
631
|
+
background: #eef3fe;
|
|
612
632
|
}
|
|
613
|
-
.
|
|
614
|
-
|
|
633
|
+
.serviceflow-nodeTitle[data-v-4d28d77b] {
|
|
634
|
+
width: 80px;
|
|
615
635
|
}
|
|
616
|
-
.serviceflow-nodeView[data-v-
|
|
636
|
+
.serviceflow-nodeView[data-v-42ce3f17] {
|
|
617
637
|
box-sizing: border-box;
|
|
618
638
|
margin: 10px 10px;
|
|
619
639
|
width: 180px;
|
|
@@ -622,7 +642,7 @@
|
|
|
622
642
|
border-radius: 2px 2px 2px 2px;
|
|
623
643
|
padding: 20px 10px;
|
|
624
644
|
}
|
|
625
|
-
.serviceflow-nodeTitle[data-v-
|
|
645
|
+
.serviceflow-nodeTitle[data-v-42ce3f17] {
|
|
626
646
|
width: 90px;
|
|
627
647
|
height: 15px;
|
|
628
648
|
font-weight: 400;
|
|
@@ -638,7 +658,7 @@
|
|
|
638
658
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
639
659
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
640
660
|
}
|
|
641
|
-
.serviceflow-nodeContent[data-v-
|
|
661
|
+
.serviceflow-nodeContent[data-v-42ce3f17] {
|
|
642
662
|
/* width: 100%; */
|
|
643
663
|
height: 15px;
|
|
644
664
|
font-weight: 400;
|
|
@@ -654,28 +674,27 @@
|
|
|
654
674
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
655
675
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
656
676
|
}
|
|
657
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
677
|
+
.serviceflow-nodeContent-desc[data-v-42ce3f17] {
|
|
658
678
|
}
|
|
659
|
-
.el-divider--horizontal[data-v-
|
|
679
|
+
.el-divider--horizontal[data-v-42ce3f17] {
|
|
660
680
|
margin: 12px 0;
|
|
661
681
|
}
|
|
662
|
-
.serviceflow-nodeView[data-v-
|
|
682
|
+
.serviceflow-nodeView[data-v-42ce3f17] {
|
|
663
683
|
border: 1px solid #5a90f9;
|
|
664
|
-
background: #eef3fe;
|
|
665
|
-
width: 180px;
|
|
666
|
-
min-height: 95px;
|
|
684
|
+
background: #eef3fe;
|
|
667
685
|
}
|
|
668
|
-
.serviceflow-
|
|
686
|
+
.serviceflow-nodeTitle[data-v-42ce3f17] {
|
|
687
|
+
width: 80px;
|
|
669
688
|
}
|
|
670
689
|
|
|
671
|
-
.
|
|
672
|
-
width:
|
|
673
|
-
height:
|
|
690
|
+
.node-content[data-v-117d4091] {
|
|
691
|
+
width: 120px;
|
|
692
|
+
height: 44px;
|
|
674
693
|
background: #ffffff;
|
|
675
694
|
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
676
695
|
border-radius: 2px 2px 2px 2px;
|
|
677
696
|
}
|
|
678
|
-
.content[data-v-
|
|
697
|
+
.content[data-v-117d4091] {
|
|
679
698
|
width: 28px;
|
|
680
699
|
height: 15px;
|
|
681
700
|
font-weight: 400;
|
|
@@ -685,9 +704,10 @@
|
|
|
685
704
|
text-align: left;
|
|
686
705
|
font-style: normal;
|
|
687
706
|
text-transform: none;
|
|
688
|
-
padding: 5px 0px 4px 10px;
|
|
707
|
+
padding: 5px 0px 4px 10px;
|
|
708
|
+
box-sizing: content-box;
|
|
689
709
|
}
|
|
690
|
-
.serviceflow-nodeView[data-v-
|
|
710
|
+
.serviceflow-nodeView[data-v-08d9d211] {
|
|
691
711
|
box-sizing: border-box;
|
|
692
712
|
margin: 10px 10px;
|
|
693
713
|
width: 180px;
|
|
@@ -696,7 +716,7 @@
|
|
|
696
716
|
border-radius: 2px 2px 2px 2px;
|
|
697
717
|
padding: 20px 10px;
|
|
698
718
|
}
|
|
699
|
-
.serviceflow-nodeTitle[data-v-
|
|
719
|
+
.serviceflow-nodeTitle[data-v-08d9d211] {
|
|
700
720
|
width: 90px;
|
|
701
721
|
height: 15px;
|
|
702
722
|
font-weight: 400;
|
|
@@ -712,7 +732,7 @@
|
|
|
712
732
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
713
733
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
714
734
|
}
|
|
715
|
-
.serviceflow-nodeContent[data-v-
|
|
735
|
+
.serviceflow-nodeContent[data-v-08d9d211] {
|
|
716
736
|
/* width: 100%; */
|
|
717
737
|
height: 15px;
|
|
718
738
|
font-weight: 400;
|
|
@@ -728,19 +748,19 @@
|
|
|
728
748
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
729
749
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
730
750
|
}
|
|
731
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
751
|
+
.serviceflow-nodeContent-desc[data-v-08d9d211] {
|
|
732
752
|
}
|
|
733
|
-
.el-divider--horizontal[data-v-
|
|
753
|
+
.el-divider--horizontal[data-v-08d9d211] {
|
|
734
754
|
margin: 12px 0;
|
|
735
755
|
}
|
|
736
|
-
.serviceflow-nodeView[data-v-
|
|
756
|
+
.serviceflow-nodeView[data-v-08d9d211] {
|
|
737
757
|
border: 1px solid #5a90f9;
|
|
738
758
|
background: #eef3fe;
|
|
739
759
|
}
|
|
740
|
-
.serviceflow-nodeTitle[data-v-
|
|
760
|
+
.serviceflow-nodeTitle[data-v-08d9d211] {
|
|
741
761
|
width: 80px;
|
|
742
762
|
}
|
|
743
|
-
.serviceflow-nodeView[data-v-
|
|
763
|
+
.serviceflow-nodeView[data-v-1ce8de44] {
|
|
744
764
|
box-sizing: border-box;
|
|
745
765
|
margin: 10px 10px;
|
|
746
766
|
width: 180px;
|
|
@@ -749,7 +769,7 @@
|
|
|
749
769
|
border-radius: 2px 2px 2px 2px;
|
|
750
770
|
padding: 20px 10px;
|
|
751
771
|
}
|
|
752
|
-
.serviceflow-nodeTitle[data-v-
|
|
772
|
+
.serviceflow-nodeTitle[data-v-1ce8de44] {
|
|
753
773
|
width: 90px;
|
|
754
774
|
height: 15px;
|
|
755
775
|
font-weight: 400;
|
|
@@ -765,7 +785,7 @@
|
|
|
765
785
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
766
786
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
767
787
|
}
|
|
768
|
-
.serviceflow-nodeContent[data-v-
|
|
788
|
+
.serviceflow-nodeContent[data-v-1ce8de44] {
|
|
769
789
|
/* width: 100%; */
|
|
770
790
|
height: 15px;
|
|
771
791
|
font-weight: 400;
|
|
@@ -781,19 +801,20 @@
|
|
|
781
801
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
782
802
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
783
803
|
}
|
|
784
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
804
|
+
.serviceflow-nodeContent-desc[data-v-1ce8de44] {
|
|
785
805
|
}
|
|
786
|
-
.el-divider--horizontal[data-v-
|
|
806
|
+
.el-divider--horizontal[data-v-1ce8de44] {
|
|
787
807
|
margin: 12px 0;
|
|
788
808
|
}
|
|
789
|
-
.serviceflow-nodeView[data-v-
|
|
809
|
+
.serviceflow-nodeView[data-v-1ce8de44] {
|
|
790
810
|
border: 1px solid #5a90f9;
|
|
791
|
-
background: #eef3fe;
|
|
811
|
+
background: #eef3fe;
|
|
812
|
+
width: 180px;
|
|
813
|
+
min-height: 95px;
|
|
792
814
|
}
|
|
793
|
-
.serviceflow-
|
|
794
|
-
width: 80px;
|
|
815
|
+
.serviceflow-nodeContent[data-v-1ce8de44] {
|
|
795
816
|
}
|
|
796
|
-
.serviceflow-nodeView[data-v-
|
|
817
|
+
.serviceflow-nodeView[data-v-3c23a172] {
|
|
797
818
|
box-sizing: border-box;
|
|
798
819
|
margin: 10px 10px;
|
|
799
820
|
width: 180px;
|
|
@@ -802,7 +823,7 @@
|
|
|
802
823
|
border-radius: 2px 2px 2px 2px;
|
|
803
824
|
padding: 20px 10px;
|
|
804
825
|
}
|
|
805
|
-
.serviceflow-nodeTitle[data-v-
|
|
826
|
+
.serviceflow-nodeTitle[data-v-3c23a172] {
|
|
806
827
|
width: 90px;
|
|
807
828
|
height: 15px;
|
|
808
829
|
font-weight: 400;
|
|
@@ -818,7 +839,7 @@
|
|
|
818
839
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
819
840
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
820
841
|
}
|
|
821
|
-
.serviceflow-nodeContent[data-v-
|
|
842
|
+
.serviceflow-nodeContent[data-v-3c23a172] {
|
|
822
843
|
/* width: 100%; */
|
|
823
844
|
height: 15px;
|
|
824
845
|
font-weight: 400;
|
|
@@ -834,19 +855,20 @@
|
|
|
834
855
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
835
856
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
836
857
|
}
|
|
837
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
858
|
+
.serviceflow-nodeContent-desc[data-v-3c23a172] {
|
|
838
859
|
}
|
|
839
|
-
.el-divider--horizontal[data-v-
|
|
860
|
+
.el-divider--horizontal[data-v-3c23a172] {
|
|
840
861
|
margin: 12px 0;
|
|
841
862
|
}
|
|
842
|
-
.serviceflow-nodeView[data-v-
|
|
863
|
+
.serviceflow-nodeView[data-v-3c23a172] {
|
|
843
864
|
border: 1px solid #5a90f9;
|
|
844
|
-
background: #eef3fe;
|
|
865
|
+
background: #eef3fe;
|
|
866
|
+
width: 180px;
|
|
867
|
+
min-height: 95px;
|
|
845
868
|
}
|
|
846
|
-
.serviceflow-
|
|
847
|
-
width: 80px;
|
|
869
|
+
.serviceflow-nodeContent[data-v-3c23a172] {
|
|
848
870
|
}
|
|
849
|
-
.serviceflow-nodeView[data-v-
|
|
871
|
+
.serviceflow-nodeView[data-v-418f1558] {
|
|
850
872
|
box-sizing: border-box;
|
|
851
873
|
margin: 10px 10px;
|
|
852
874
|
width: 180px;
|
|
@@ -855,7 +877,7 @@
|
|
|
855
877
|
border-radius: 2px 2px 2px 2px;
|
|
856
878
|
padding: 20px 10px;
|
|
857
879
|
}
|
|
858
|
-
.serviceflow-nodeTitle[data-v-
|
|
880
|
+
.serviceflow-nodeTitle[data-v-418f1558] {
|
|
859
881
|
width: 90px;
|
|
860
882
|
height: 15px;
|
|
861
883
|
font-weight: 400;
|
|
@@ -871,7 +893,7 @@
|
|
|
871
893
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
872
894
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
873
895
|
}
|
|
874
|
-
.serviceflow-nodeContent[data-v-
|
|
896
|
+
.serviceflow-nodeContent[data-v-418f1558] {
|
|
875
897
|
/* width: 100%; */
|
|
876
898
|
height: 15px;
|
|
877
899
|
font-weight: 400;
|
|
@@ -887,40 +909,20 @@
|
|
|
887
909
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
888
910
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
889
911
|
}
|
|
890
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
912
|
+
.serviceflow-nodeContent-desc[data-v-418f1558] {
|
|
891
913
|
}
|
|
892
|
-
.el-divider--horizontal[data-v-
|
|
914
|
+
.el-divider--horizontal[data-v-418f1558] {
|
|
893
915
|
margin: 12px 0;
|
|
894
916
|
}
|
|
895
|
-
.serviceflow-nodeView[data-v-
|
|
917
|
+
.serviceflow-nodeView[data-v-418f1558] {
|
|
896
918
|
border: 1px solid #5a90f9;
|
|
897
|
-
background: #eef3fe;
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
width: 80px;
|
|
901
|
-
}
|
|
902
|
-
|
|
903
|
-
.node-content[data-v-669b618f] {
|
|
904
|
-
width: 120px;
|
|
905
|
-
height: 44px;
|
|
906
|
-
background: #ffffff;
|
|
907
|
-
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
908
|
-
border-radius: 2px 2px 2px 2px;
|
|
919
|
+
background: #eef3fe;
|
|
920
|
+
width: 180px;
|
|
921
|
+
min-height: 95px;
|
|
909
922
|
}
|
|
910
|
-
.
|
|
911
|
-
width: 28px;
|
|
912
|
-
height: 15px;
|
|
913
|
-
font-weight: 400;
|
|
914
|
-
font-size: 14px;
|
|
915
|
-
color: #333333;
|
|
916
|
-
line-height: 14px;
|
|
917
|
-
text-align: left;
|
|
918
|
-
font-style: normal;
|
|
919
|
-
text-transform: none;
|
|
920
|
-
padding: 5px 0px 4px 10px;
|
|
921
|
-
box-sizing: content-box;
|
|
923
|
+
.serviceflow-nodeContent[data-v-418f1558] {
|
|
922
924
|
}
|
|
923
|
-
.serviceflow-nodeView[data-v-
|
|
925
|
+
.serviceflow-nodeView[data-v-6b34f36c] {
|
|
924
926
|
box-sizing: border-box;
|
|
925
927
|
margin: 10px 10px;
|
|
926
928
|
width: 180px;
|
|
@@ -929,7 +931,7 @@
|
|
|
929
931
|
border-radius: 2px 2px 2px 2px;
|
|
930
932
|
padding: 20px 10px;
|
|
931
933
|
}
|
|
932
|
-
.serviceflow-nodeTitle[data-v-
|
|
934
|
+
.serviceflow-nodeTitle[data-v-6b34f36c] {
|
|
933
935
|
width: 90px;
|
|
934
936
|
height: 15px;
|
|
935
937
|
font-weight: 400;
|
|
@@ -945,7 +947,7 @@
|
|
|
945
947
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
946
948
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
947
949
|
}
|
|
948
|
-
.serviceflow-nodeContent[data-v-
|
|
950
|
+
.serviceflow-nodeContent[data-v-6b34f36c] {
|
|
949
951
|
/* width: 100%; */
|
|
950
952
|
height: 15px;
|
|
951
953
|
font-weight: 400;
|
|
@@ -961,19 +963,19 @@
|
|
|
961
963
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
962
964
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
963
965
|
}
|
|
964
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
966
|
+
.serviceflow-nodeContent-desc[data-v-6b34f36c] {
|
|
965
967
|
}
|
|
966
|
-
.el-divider--horizontal[data-v-
|
|
968
|
+
.el-divider--horizontal[data-v-6b34f36c] {
|
|
967
969
|
margin: 12px 0;
|
|
968
970
|
}
|
|
969
|
-
.serviceflow-nodeView[data-v-
|
|
971
|
+
.serviceflow-nodeView[data-v-6b34f36c] {
|
|
970
972
|
border: 1px solid #5a90f9;
|
|
971
973
|
background: #eef3fe;
|
|
972
974
|
}
|
|
973
|
-
.serviceflow-nodeTitle[data-v-
|
|
975
|
+
.serviceflow-nodeTitle[data-v-6b34f36c] {
|
|
974
976
|
width: 80px;
|
|
975
977
|
}
|
|
976
|
-
.serviceflow-nodeView[data-v-
|
|
978
|
+
.serviceflow-nodeView[data-v-91a913ff] {
|
|
977
979
|
box-sizing: border-box;
|
|
978
980
|
margin: 10px 10px;
|
|
979
981
|
width: 180px;
|
|
@@ -982,7 +984,7 @@
|
|
|
982
984
|
border-radius: 2px 2px 2px 2px;
|
|
983
985
|
padding: 20px 10px;
|
|
984
986
|
}
|
|
985
|
-
.serviceflow-nodeTitle[data-v-
|
|
987
|
+
.serviceflow-nodeTitle[data-v-91a913ff] {
|
|
986
988
|
width: 90px;
|
|
987
989
|
height: 15px;
|
|
988
990
|
font-weight: 400;
|
|
@@ -998,7 +1000,7 @@
|
|
|
998
1000
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
999
1001
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1000
1002
|
}
|
|
1001
|
-
.serviceflow-nodeContent[data-v-
|
|
1003
|
+
.serviceflow-nodeContent[data-v-91a913ff] {
|
|
1002
1004
|
/* width: 100%; */
|
|
1003
1005
|
height: 15px;
|
|
1004
1006
|
font-weight: 400;
|
|
@@ -1014,19 +1016,19 @@
|
|
|
1014
1016
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1015
1017
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1016
1018
|
}
|
|
1017
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
1019
|
+
.serviceflow-nodeContent-desc[data-v-91a913ff] {
|
|
1018
1020
|
}
|
|
1019
|
-
.el-divider--horizontal[data-v-
|
|
1021
|
+
.el-divider--horizontal[data-v-91a913ff] {
|
|
1020
1022
|
margin: 12px 0;
|
|
1021
1023
|
}
|
|
1022
|
-
.serviceflow-nodeView[data-v-
|
|
1024
|
+
.serviceflow-nodeView[data-v-91a913ff] {
|
|
1023
1025
|
border: 1px solid #5a90f9;
|
|
1024
1026
|
background: #eef3fe;
|
|
1025
1027
|
}
|
|
1026
|
-
.serviceflow-nodeTitle[data-v-
|
|
1028
|
+
.serviceflow-nodeTitle[data-v-91a913ff] {
|
|
1027
1029
|
width: 80px;
|
|
1028
1030
|
}
|
|
1029
|
-
.serviceflow-nodeView[data-v-
|
|
1031
|
+
.serviceflow-nodeView[data-v-9770119b] {
|
|
1030
1032
|
box-sizing: border-box;
|
|
1031
1033
|
margin: 10px 10px;
|
|
1032
1034
|
width: 180px;
|
|
@@ -1035,7 +1037,7 @@
|
|
|
1035
1037
|
border-radius: 2px 2px 2px 2px;
|
|
1036
1038
|
padding: 20px 10px;
|
|
1037
1039
|
}
|
|
1038
|
-
.serviceflow-nodeTitle[data-v-
|
|
1040
|
+
.serviceflow-nodeTitle[data-v-9770119b] {
|
|
1039
1041
|
width: 90px;
|
|
1040
1042
|
height: 15px;
|
|
1041
1043
|
font-weight: 400;
|
|
@@ -1051,7 +1053,7 @@
|
|
|
1051
1053
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1052
1054
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1053
1055
|
}
|
|
1054
|
-
.serviceflow-nodeContent[data-v-
|
|
1056
|
+
.serviceflow-nodeContent[data-v-9770119b] {
|
|
1055
1057
|
/* width: 100%; */
|
|
1056
1058
|
height: 15px;
|
|
1057
1059
|
font-weight: 400;
|
|
@@ -1067,19 +1069,19 @@
|
|
|
1067
1069
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1068
1070
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1069
1071
|
}
|
|
1070
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
1072
|
+
.serviceflow-nodeContent-desc[data-v-9770119b] {
|
|
1071
1073
|
}
|
|
1072
|
-
.el-divider--horizontal[data-v-
|
|
1074
|
+
.el-divider--horizontal[data-v-9770119b] {
|
|
1073
1075
|
margin: 12px 0;
|
|
1074
1076
|
}
|
|
1075
|
-
.serviceflow-nodeView[data-v-
|
|
1077
|
+
.serviceflow-nodeView[data-v-9770119b] {
|
|
1076
1078
|
border: 1px solid #5a90f9;
|
|
1077
1079
|
background: #eef3fe;
|
|
1078
1080
|
}
|
|
1079
|
-
.serviceflow-nodeTitle[data-v-
|
|
1081
|
+
.serviceflow-nodeTitle[data-v-9770119b] {
|
|
1080
1082
|
width: 80px;
|
|
1081
1083
|
}
|
|
1082
|
-
.serviceflow-nodeView[data-v-
|
|
1084
|
+
.serviceflow-nodeView[data-v-b04d3f8b] {
|
|
1083
1085
|
box-sizing: border-box;
|
|
1084
1086
|
margin: 10px 10px;
|
|
1085
1087
|
width: 180px;
|
|
@@ -1088,7 +1090,7 @@
|
|
|
1088
1090
|
border-radius: 2px 2px 2px 2px;
|
|
1089
1091
|
padding: 20px 10px;
|
|
1090
1092
|
}
|
|
1091
|
-
.serviceflow-nodeTitle[data-v-
|
|
1093
|
+
.serviceflow-nodeTitle[data-v-b04d3f8b] {
|
|
1092
1094
|
width: 90px;
|
|
1093
1095
|
height: 15px;
|
|
1094
1096
|
font-weight: 400;
|
|
@@ -1104,7 +1106,7 @@
|
|
|
1104
1106
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1105
1107
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1106
1108
|
}
|
|
1107
|
-
.serviceflow-nodeContent[data-v-
|
|
1109
|
+
.serviceflow-nodeContent[data-v-b04d3f8b] {
|
|
1108
1110
|
/* width: 100%; */
|
|
1109
1111
|
height: 15px;
|
|
1110
1112
|
font-weight: 400;
|
|
@@ -1120,20 +1122,19 @@
|
|
|
1120
1122
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1121
1123
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1122
1124
|
}
|
|
1123
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
1125
|
+
.serviceflow-nodeContent-desc[data-v-b04d3f8b] {
|
|
1124
1126
|
}
|
|
1125
|
-
.el-divider--horizontal[data-v-
|
|
1127
|
+
.el-divider--horizontal[data-v-b04d3f8b] {
|
|
1126
1128
|
margin: 12px 0;
|
|
1127
1129
|
}
|
|
1128
|
-
.serviceflow-nodeView[data-v-
|
|
1130
|
+
.serviceflow-nodeView[data-v-b04d3f8b] {
|
|
1129
1131
|
border: 1px solid #5a90f9;
|
|
1130
|
-
background: #eef3fe;
|
|
1131
|
-
width: 180px;
|
|
1132
|
-
min-height: 95px;
|
|
1132
|
+
background: #eef3fe;
|
|
1133
1133
|
}
|
|
1134
|
-
.serviceflow-
|
|
1134
|
+
.serviceflow-nodeTitle[data-v-b04d3f8b] {
|
|
1135
|
+
width: 80px;
|
|
1135
1136
|
}
|
|
1136
|
-
.serviceflow-nodeView[data-v-
|
|
1137
|
+
.serviceflow-nodeView[data-v-1519c141] {
|
|
1137
1138
|
box-sizing: border-box;
|
|
1138
1139
|
margin: 10px 10px;
|
|
1139
1140
|
width: 180px;
|
|
@@ -1142,7 +1143,7 @@
|
|
|
1142
1143
|
border-radius: 2px 2px 2px 2px;
|
|
1143
1144
|
padding: 20px 10px;
|
|
1144
1145
|
}
|
|
1145
|
-
.serviceflow-nodeTitle[data-v-
|
|
1146
|
+
.serviceflow-nodeTitle[data-v-1519c141] {
|
|
1146
1147
|
width: 90px;
|
|
1147
1148
|
height: 15px;
|
|
1148
1149
|
font-weight: 400;
|
|
@@ -1158,7 +1159,7 @@
|
|
|
1158
1159
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1159
1160
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1160
1161
|
}
|
|
1161
|
-
.serviceflow-nodeContent[data-v-
|
|
1162
|
+
.serviceflow-nodeContent[data-v-1519c141] {
|
|
1162
1163
|
/* width: 100%; */
|
|
1163
1164
|
height: 15px;
|
|
1164
1165
|
font-weight: 400;
|
|
@@ -1174,19 +1175,39 @@
|
|
|
1174
1175
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1175
1176
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1176
1177
|
}
|
|
1177
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
1178
|
+
.serviceflow-nodeContent-desc[data-v-1519c141] {
|
|
1178
1179
|
}
|
|
1179
|
-
.el-divider--horizontal[data-v-
|
|
1180
|
+
.el-divider--horizontal[data-v-1519c141] {
|
|
1180
1181
|
margin: 12px 0;
|
|
1181
1182
|
}
|
|
1182
|
-
.serviceflow-nodeView[data-v-
|
|
1183
|
+
.serviceflow-nodeView[data-v-1519c141] {
|
|
1183
1184
|
border: 1px solid #5a90f9;
|
|
1184
1185
|
background: #eef3fe;
|
|
1185
1186
|
}
|
|
1186
|
-
.serviceflow-nodeTitle[data-v-
|
|
1187
|
+
.serviceflow-nodeTitle[data-v-1519c141] {
|
|
1187
1188
|
width: 80px;
|
|
1188
1189
|
}
|
|
1189
|
-
|
|
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-96d149c1] {
|
|
1190
1211
|
box-sizing: border-box;
|
|
1191
1212
|
margin: 10px 10px;
|
|
1192
1213
|
width: 180px;
|
|
@@ -1195,7 +1216,7 @@
|
|
|
1195
1216
|
border-radius: 2px 2px 2px 2px;
|
|
1196
1217
|
padding: 20px 10px;
|
|
1197
1218
|
}
|
|
1198
|
-
.serviceflow-nodeTitle[data-v-
|
|
1219
|
+
.serviceflow-nodeTitle[data-v-96d149c1] {
|
|
1199
1220
|
width: 90px;
|
|
1200
1221
|
height: 15px;
|
|
1201
1222
|
font-weight: 400;
|
|
@@ -1211,7 +1232,7 @@
|
|
|
1211
1232
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1212
1233
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1213
1234
|
}
|
|
1214
|
-
.serviceflow-nodeContent[data-v-
|
|
1235
|
+
.serviceflow-nodeContent[data-v-96d149c1] {
|
|
1215
1236
|
/* width: 100%; */
|
|
1216
1237
|
height: 15px;
|
|
1217
1238
|
font-weight: 400;
|
|
@@ -1227,57 +1248,36 @@
|
|
|
1227
1248
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1228
1249
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1229
1250
|
}
|
|
1230
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
1251
|
+
.serviceflow-nodeContent-desc[data-v-96d149c1] {
|
|
1231
1252
|
}
|
|
1232
|
-
.el-divider--horizontal[data-v-
|
|
1253
|
+
.el-divider--horizontal[data-v-96d149c1] {
|
|
1233
1254
|
margin: 12px 0;
|
|
1234
1255
|
}
|
|
1235
|
-
.serviceflow-nodeView[data-v-
|
|
1256
|
+
.serviceflow-nodeView[data-v-96d149c1] {
|
|
1236
1257
|
border: 1px solid #5a90f9;
|
|
1237
1258
|
background: #eef3fe;
|
|
1238
1259
|
}
|
|
1239
|
-
.serviceflow-nodeTitle[data-v-
|
|
1260
|
+
.serviceflow-nodeTitle[data-v-96d149c1] {
|
|
1240
1261
|
width: 80px;
|
|
1241
1262
|
}
|
|
1242
1263
|
|
|
1243
|
-
.
|
|
1244
|
-
width: 120px;
|
|
1245
|
-
height: 44px;
|
|
1246
|
-
background: #ffffff;
|
|
1247
|
-
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
1248
|
-
border-radius: 2px 2px 2px 2px;
|
|
1249
|
-
}
|
|
1250
|
-
.content[data-v-117d4091] {
|
|
1251
|
-
width: 28px;
|
|
1252
|
-
height: 15px;
|
|
1253
|
-
font-weight: 400;
|
|
1254
|
-
font-size: 14px;
|
|
1255
|
-
color: #333333;
|
|
1256
|
-
line-height: 14px;
|
|
1257
|
-
text-align: left;
|
|
1258
|
-
font-style: normal;
|
|
1259
|
-
text-transform: none;
|
|
1260
|
-
padding: 5px 0px 4px 10px;
|
|
1261
|
-
box-sizing: content-box;
|
|
1262
|
-
}
|
|
1263
|
-
|
|
1264
|
-
.el-select + .el-input[data-v-b53b2895] {
|
|
1264
|
+
.el-select + .el-input[data-v-7fcf8a84] {
|
|
1265
1265
|
margin-left: 10px;
|
|
1266
1266
|
}
|
|
1267
|
-
.el-input + .el-input[data-v-
|
|
1267
|
+
.el-input + .el-input[data-v-7fcf8a84] {
|
|
1268
1268
|
margin-left: 10px;
|
|
1269
1269
|
}
|
|
1270
|
-
.el-input + .el-button[data-v-
|
|
1270
|
+
.el-input + .el-button[data-v-7fcf8a84] {
|
|
1271
1271
|
margin-left: 10px;
|
|
1272
1272
|
}
|
|
1273
1273
|
|
|
1274
|
-
.el-select + .el-input[data-v-
|
|
1274
|
+
.el-select + .el-input[data-v-b53b2895] {
|
|
1275
1275
|
margin-left: 10px;
|
|
1276
1276
|
}
|
|
1277
|
-
.el-input + .el-input[data-v-
|
|
1277
|
+
.el-input + .el-input[data-v-b53b2895] {
|
|
1278
1278
|
margin-left: 10px;
|
|
1279
1279
|
}
|
|
1280
|
-
.el-input + .el-button[data-v-
|
|
1280
|
+
.el-input + .el-button[data-v-b53b2895] {
|
|
1281
1281
|
margin-left: 10px;
|
|
1282
1282
|
}
|
|
1283
1283
|
|
|
@@ -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.46",
|
|
4
4
|
"description": "AgileBuilder Service Flow Designer",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/es/index.js",
|
|
@@ -61,7 +61,7 @@
|
|
|
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.83",
|
|
65
65
|
"codemirror": "^6.0.1",
|
|
66
66
|
"nprogress": "^0.2.0",
|
|
67
67
|
"pinia": "^2.1.7",
|