service-flow-designer 2.0.18 → 2.0.21
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.
- package/dist/es/designer/common/components/database-select.vue.js +1 -1
- package/dist/es/designer/common/components/database-select.vue2.js +1 -1
- package/dist/es/designer/common/components/datatable-select.vue.js +1 -1
- package/dist/es/designer/common/components/datatable-select.vue2.js +5 -2
- package/dist/es/designer/common/components/json-view/json-view-dialog.vue.js +1 -1
- package/dist/es/designer/common/components/json-view/json-view.vue.js +139 -1
- package/dist/es/designer/common/components/json-view/json-view.vue2.js +1 -139
- package/dist/es/designer/desginer-index.vue.js +1 -1
- package/dist/es/designer/desginer-index.vue2.js +1 -1
- package/dist/es/designer/service-components/base/notification/recipients-select.vue.d.ts +1 -1
- package/dist/es/designer/service-flow-view/service-params.vue.js +15 -4
- package/dist/es/designer/service-flow-view/service-test/service-test.vue.js +1 -1
- package/dist/es/designer/service-flow-view/service-update-log.vue.js +1 -1
- package/dist/es/designer/service-flow-view/service-update-log.vue2.js +3 -1
- package/dist/es/designer/service-panel/service-list.vue.js +1 -1
- package/dist/es/designer/service-panel/service-list.vue2.js +38 -11
- package/dist/es/stores/page-store.js +1 -1
- package/dist/es/style.css +265 -265
- package/dist/es/utils/common-util.js +1 -1
- package/package.json +2 -2
package/dist/es/style.css
CHANGED
|
@@ -1,27 +1,68 @@
|
|
|
1
|
-
.amb-container-left[data-v-
|
|
1
|
+
.amb-container-left[data-v-a35a4385] {
|
|
2
2
|
width: 260px;
|
|
3
3
|
padding-right: 20px;
|
|
4
4
|
overflow-y: auto;
|
|
5
5
|
}
|
|
6
|
-
.amb-container-main[data-v-
|
|
6
|
+
.amb-container-main[data-v-a35a4385] {
|
|
7
7
|
padding: 0 10px 0 0;
|
|
8
8
|
}
|
|
9
|
-
.amb-container-main[data-v-
|
|
9
|
+
.amb-container-main[data-v-a35a4385]::-webkit-scrollbar {
|
|
10
10
|
width: 1px;
|
|
11
11
|
}
|
|
12
|
-
.amb-container-attr[data-v-
|
|
12
|
+
.amb-container-attr[data-v-a35a4385] {
|
|
13
13
|
width: 300px;
|
|
14
14
|
padding-left: 20px;
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
解决右侧弹出属性配置遮罩层打开后页面其他地方无法点击问题
|
|
18
18
|
*/
|
|
19
|
-
[data-v-
|
|
19
|
+
[data-v-a35a4385]:v-deep(.el-drawer__header) {
|
|
20
20
|
margin-bottom: 0 !important;
|
|
21
21
|
}
|
|
22
|
-
[data-v-
|
|
22
|
+
[data-v-a35a4385] .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
|
.amb-design-content[data-v-ff04c7d7] {
|
|
26
67
|
overflow: auto;
|
|
27
68
|
display: block;
|
|
@@ -125,59 +166,36 @@
|
|
|
125
166
|
border-color: transparent transparent var(--el-skeleton-color) transparent;
|
|
126
167
|
}
|
|
127
168
|
|
|
128
|
-
.
|
|
129
|
-
|
|
130
|
-
box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.05);
|
|
131
|
-
height: 100%;
|
|
132
|
-
padding-left: 10px;
|
|
133
|
-
padding-right: 10px;
|
|
134
|
-
overflow: auto;
|
|
135
|
-
}
|
|
136
|
-
/*控制滚动条宽度*/
|
|
137
|
-
.amb-design-assembly-content[data-v-59e0837d]::-webkit-scrollbar {
|
|
138
|
-
width: 1px;
|
|
139
|
-
}
|
|
140
|
-
.amb-assembly-header[data-v-59e0837d] {
|
|
141
|
-
position: absolute;
|
|
142
|
-
width: 220px;
|
|
143
|
-
text-align: center;
|
|
144
|
-
padding: 18px 0px 10px 0px;
|
|
145
|
-
padding-bottom: 14px;
|
|
146
|
-
background-color: #ffffff;
|
|
147
|
-
}
|
|
148
|
-
.amb-assembly-header-type[data-v-59e0837d] {
|
|
149
|
-
border-radius: 100px 100px 100px 100px;
|
|
150
|
-
background: #ffffff;
|
|
151
|
-
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
|
|
152
|
-
padding: 10px;
|
|
153
|
-
padding-bottom: 12px;
|
|
154
|
-
}
|
|
155
|
-
.amb-assembly-header-type > label[data-v-59e0837d] {
|
|
156
|
-
padding: 4px 14px;
|
|
157
|
-
cursor: pointer;
|
|
158
|
-
font-size: 14px;
|
|
169
|
+
.editorTool[data-v-d55ab098] {
|
|
170
|
+
margin-left: auto;
|
|
159
171
|
}
|
|
160
|
-
.
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
color: #ffffff;
|
|
172
|
+
.editorOption[data-v-d55ab098] {
|
|
173
|
+
margin-right: 10px;
|
|
174
|
+
cursor: pointer;
|
|
164
175
|
}
|
|
165
|
-
.
|
|
166
|
-
|
|
176
|
+
.pppp[data-v-d55ab098] {
|
|
177
|
+
display: flex; /* 使用Flex布局 */
|
|
178
|
+
justify-content: flex-start;
|
|
179
|
+
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
167
180
|
}
|
|
168
181
|
|
|
169
182
|
.el-alert + .el-form-item[data-v-a158f309] {
|
|
170
183
|
margin-top: 10px;
|
|
171
184
|
}
|
|
172
185
|
|
|
173
|
-
.
|
|
186
|
+
.el-dialog__wrapper[data-v-d41cb0ad] {
|
|
187
|
+
overflow: hidden !important;
|
|
188
|
+
padding-right: 0 !important;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.editorTool[data-v-684c1f08] {
|
|
174
192
|
margin-left: auto;
|
|
175
193
|
}
|
|
176
|
-
.editorOption[data-v-
|
|
194
|
+
.editorOption[data-v-684c1f08] {
|
|
177
195
|
margin-right: 10px;
|
|
178
196
|
cursor: pointer;
|
|
179
197
|
}
|
|
180
|
-
.pppp[data-v-
|
|
198
|
+
.pppp[data-v-684c1f08] {
|
|
181
199
|
display: flex; /* 使用Flex布局 */
|
|
182
200
|
justify-content: flex-start;
|
|
183
201
|
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
@@ -200,10 +218,13 @@
|
|
|
200
218
|
position: static;
|
|
201
219
|
}
|
|
202
220
|
|
|
203
|
-
.el-
|
|
221
|
+
.el-alert + .el-table[data-v-e27c4c1e] {
|
|
204
222
|
margin-top: 10px;
|
|
205
223
|
}
|
|
206
|
-
.el-
|
|
224
|
+
.el-table + .el-alert[data-v-e27c4c1e] {
|
|
225
|
+
margin: 10px 0;
|
|
226
|
+
}
|
|
227
|
+
.el-alert + .el-form-item[data-v-e27c4c1e] {
|
|
207
228
|
margin-top: 10px;
|
|
208
229
|
}
|
|
209
230
|
|
|
@@ -213,30 +234,6 @@
|
|
|
213
234
|
.el-radio + .el-radio[data-v-65e38bfb] {
|
|
214
235
|
margin-left: 10px;
|
|
215
236
|
}
|
|
216
|
-
|
|
217
|
-
.el-alert + .el-table[data-v-028fb838] {
|
|
218
|
-
margin-top: 10px;
|
|
219
|
-
}
|
|
220
|
-
.el-table + .el-alert[data-v-028fb838] {
|
|
221
|
-
margin: 10px 0;
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
.el-alert + .el-table[data-v-d978e7dc] {
|
|
225
|
-
margin-top: 10px;
|
|
226
|
-
}
|
|
227
|
-
.el-table + .el-alert[data-v-d978e7dc] {
|
|
228
|
-
margin: 10px 0;
|
|
229
|
-
}
|
|
230
|
-
.el-alert + .el-form-item[data-v-d978e7dc] {
|
|
231
|
-
margin-top: 10px;
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
.el-alert + .el-table[data-v-82e0dfef] {
|
|
235
|
-
margin-top: 10px;
|
|
236
|
-
}
|
|
237
|
-
.el-alert + .el-form-item[data-v-82e0dfef] {
|
|
238
|
-
margin-top: 10px;
|
|
239
|
-
}
|
|
240
237
|
.control-item[data-v-fdc6ec07] {
|
|
241
238
|
top: -5px;
|
|
242
239
|
position: relative;
|
|
@@ -368,46 +365,18 @@
|
|
|
368
365
|
margin-left: 50px;
|
|
369
366
|
}
|
|
370
367
|
|
|
371
|
-
.el-alert + .el-
|
|
372
|
-
margin-top: 10px;
|
|
373
|
-
}
|
|
374
|
-
.el-alert + .el-table[data-v-32875028] {
|
|
375
|
-
margin: 10px 0;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
.el-alert + .el-table[data-v-e27c4c1e] {
|
|
368
|
+
.el-alert + .el-table[data-v-82e0dfef] {
|
|
379
369
|
margin-top: 10px;
|
|
380
370
|
}
|
|
381
|
-
.el-
|
|
382
|
-
margin: 10px 0;
|
|
383
|
-
}
|
|
384
|
-
.el-alert + .el-form-item[data-v-e27c4c1e] {
|
|
371
|
+
.el-alert + .el-form-item[data-v-82e0dfef] {
|
|
385
372
|
margin-top: 10px;
|
|
386
373
|
}
|
|
387
374
|
|
|
388
|
-
|
|
389
|
-
overflow: hidden !important;
|
|
390
|
-
padding-right: 0 !important;
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
.editorTool[data-v-684c1f08] {
|
|
394
|
-
margin-left: auto;
|
|
395
|
-
}
|
|
396
|
-
.editorOption[data-v-684c1f08] {
|
|
397
|
-
margin-right: 10px;
|
|
398
|
-
cursor: pointer;
|
|
399
|
-
}
|
|
400
|
-
.pppp[data-v-684c1f08] {
|
|
401
|
-
display: flex; /* 使用Flex布局 */
|
|
402
|
-
justify-content: flex-start;
|
|
403
|
-
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
404
|
-
}
|
|
405
|
-
|
|
406
|
-
[data-v-a5cc897b] .el-table__row {
|
|
375
|
+
[data-v-2badb0bb] .el-table__row {
|
|
407
376
|
cursor: pointer;
|
|
408
377
|
}
|
|
409
378
|
/** 右键菜单样式 */
|
|
410
|
-
.context-menu[data-v-
|
|
379
|
+
.context-menu[data-v-2badb0bb] {
|
|
411
380
|
position: absolute;
|
|
412
381
|
background: #fff;
|
|
413
382
|
z-index: 999;
|
|
@@ -418,7 +387,7 @@
|
|
|
418
387
|
border-radius: 10px;
|
|
419
388
|
font-size: 14px;
|
|
420
389
|
}
|
|
421
|
-
.context-menu li[data-v-
|
|
390
|
+
.context-menu li[data-v-2badb0bb] {
|
|
422
391
|
list-style-type: none;
|
|
423
392
|
min-width: 75px;
|
|
424
393
|
line-height: 28px;
|
|
@@ -427,17 +396,24 @@
|
|
|
427
396
|
padding-left: 5px;
|
|
428
397
|
cursor: pointer;
|
|
429
398
|
}
|
|
430
|
-
.context-menu li[data-v-
|
|
399
|
+
.context-menu li[data-v-2badb0bb]:hover {
|
|
431
400
|
background: #0165e1;
|
|
432
401
|
color: #fff;
|
|
433
402
|
}
|
|
434
403
|
/** 右键菜单样式 */
|
|
435
|
-
.custom-tree-node[data-v-
|
|
404
|
+
.custom-tree-node[data-v-2badb0bb] {
|
|
436
405
|
font-size: 14px;
|
|
437
406
|
padding-right: 8px;
|
|
438
407
|
display: flex; /* 使用Flex布局 */
|
|
439
408
|
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
440
409
|
}
|
|
410
|
+
|
|
411
|
+
.el-alert + .el-form-item[data-v-32875028] {
|
|
412
|
+
margin-top: 10px;
|
|
413
|
+
}
|
|
414
|
+
.el-alert + .el-table[data-v-32875028] {
|
|
415
|
+
margin: 10px 0;
|
|
416
|
+
}
|
|
441
417
|
.amb-design-attr-base-content[data-v-ce167986] {
|
|
442
418
|
background: #ffffff;
|
|
443
419
|
box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.05);
|
|
@@ -505,14 +481,38 @@
|
|
|
505
481
|
opacity: 1 !important;
|
|
506
482
|
}
|
|
507
483
|
|
|
508
|
-
.
|
|
484
|
+
.el-tabs + .el-alert[data-v-08737620] {
|
|
485
|
+
margin-top: 10px;
|
|
486
|
+
}
|
|
487
|
+
.el-alert + .el-form-item[data-v-08737620] {
|
|
488
|
+
margin-top: 10px;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
.el-alert + .el-table[data-v-d978e7dc] {
|
|
492
|
+
margin-top: 10px;
|
|
493
|
+
}
|
|
494
|
+
.el-table + .el-alert[data-v-d978e7dc] {
|
|
495
|
+
margin: 10px 0;
|
|
496
|
+
}
|
|
497
|
+
.el-alert + .el-form-item[data-v-d978e7dc] {
|
|
498
|
+
margin-top: 10px;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
.el-alert + .el-table[data-v-028fb838] {
|
|
502
|
+
margin-top: 10px;
|
|
503
|
+
}
|
|
504
|
+
.el-table + .el-alert[data-v-028fb838] {
|
|
505
|
+
margin: 10px 0;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.node-content[data-v-b28923f3] {
|
|
509
509
|
width: 120px;
|
|
510
510
|
height: 44px;
|
|
511
511
|
background: #ffffff;
|
|
512
512
|
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
513
513
|
border-radius: 2px 2px 2px 2px;
|
|
514
514
|
}
|
|
515
|
-
.content[data-v-
|
|
515
|
+
.content[data-v-b28923f3] {
|
|
516
516
|
width: 28px;
|
|
517
517
|
height: 15px;
|
|
518
518
|
font-weight: 400;
|
|
@@ -524,7 +524,7 @@
|
|
|
524
524
|
text-transform: none;
|
|
525
525
|
padding: 5px 0px 4px 10px;
|
|
526
526
|
}
|
|
527
|
-
.nodeView[data-v-
|
|
527
|
+
.nodeView[data-v-faa5a940] {
|
|
528
528
|
box-sizing: border-box;
|
|
529
529
|
margin: 10px 10px;
|
|
530
530
|
width: 180px;
|
|
@@ -533,7 +533,7 @@
|
|
|
533
533
|
border-radius: 2px 2px 2px 2px;
|
|
534
534
|
padding: 20px 10px;
|
|
535
535
|
}
|
|
536
|
-
.nodeTitle[data-v-
|
|
536
|
+
.nodeTitle[data-v-faa5a940] {
|
|
537
537
|
width: 90px;
|
|
538
538
|
height: 15px;
|
|
539
539
|
font-weight: 400;
|
|
@@ -548,7 +548,7 @@
|
|
|
548
548
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
549
549
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
550
550
|
}
|
|
551
|
-
.nodeContent[data-v-
|
|
551
|
+
.nodeContent[data-v-faa5a940] {
|
|
552
552
|
/* width: 100%; */
|
|
553
553
|
height: 15px;
|
|
554
554
|
font-weight: 400;
|
|
@@ -563,16 +563,16 @@
|
|
|
563
563
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
564
564
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
565
565
|
}
|
|
566
|
-
.nodeContent-desc[data-v-
|
|
566
|
+
.nodeContent-desc[data-v-faa5a940]{
|
|
567
567
|
}
|
|
568
|
-
.el-divider--horizontal[data-v-
|
|
568
|
+
.el-divider--horizontal[data-v-faa5a940] {
|
|
569
569
|
margin: 12px 0;
|
|
570
570
|
}
|
|
571
|
-
.nodeView[data-v-
|
|
571
|
+
.nodeView[data-v-faa5a940] {
|
|
572
572
|
border: 1px solid #5a90f9;
|
|
573
573
|
background: #eef3fe;
|
|
574
574
|
}
|
|
575
|
-
.nodeTitle[data-v-
|
|
575
|
+
.nodeTitle[data-v-faa5a940] {
|
|
576
576
|
width: 80px;
|
|
577
577
|
}
|
|
578
578
|
.nodeView[data-v-9fff2753] {
|
|
@@ -626,7 +626,7 @@
|
|
|
626
626
|
.nodeTitle[data-v-9fff2753] {
|
|
627
627
|
width: 80px;
|
|
628
628
|
}
|
|
629
|
-
.nodeView[data-v-
|
|
629
|
+
.nodeView[data-v-df366d04] {
|
|
630
630
|
box-sizing: border-box;
|
|
631
631
|
margin: 10px 10px;
|
|
632
632
|
width: 180px;
|
|
@@ -635,7 +635,7 @@
|
|
|
635
635
|
border-radius: 2px 2px 2px 2px;
|
|
636
636
|
padding: 20px 10px;
|
|
637
637
|
}
|
|
638
|
-
.nodeTitle[data-v-
|
|
638
|
+
.nodeTitle[data-v-df366d04] {
|
|
639
639
|
width: 90px;
|
|
640
640
|
height: 15px;
|
|
641
641
|
font-weight: 400;
|
|
@@ -650,7 +650,7 @@
|
|
|
650
650
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
651
651
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
652
652
|
}
|
|
653
|
-
.nodeContent[data-v-
|
|
653
|
+
.nodeContent[data-v-df366d04] {
|
|
654
654
|
/* width: 100%; */
|
|
655
655
|
height: 15px;
|
|
656
656
|
font-weight: 400;
|
|
@@ -665,20 +665,19 @@
|
|
|
665
665
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
666
666
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
667
667
|
}
|
|
668
|
-
.nodeContent-desc[data-v-
|
|
668
|
+
.nodeContent-desc[data-v-df366d04]{
|
|
669
669
|
}
|
|
670
|
-
.el-divider--horizontal[data-v-
|
|
670
|
+
.el-divider--horizontal[data-v-df366d04] {
|
|
671
671
|
margin: 12px 0;
|
|
672
672
|
}
|
|
673
|
-
.nodeView[data-v-
|
|
673
|
+
.nodeView[data-v-df366d04] {
|
|
674
674
|
border: 1px solid #5a90f9;
|
|
675
|
-
background: #eef3fe;
|
|
676
|
-
width: 180px;
|
|
677
|
-
min-height: 95px;
|
|
675
|
+
background: #eef3fe;
|
|
678
676
|
}
|
|
679
|
-
.
|
|
677
|
+
.nodeTitle[data-v-df366d04] {
|
|
678
|
+
width: 80px;
|
|
680
679
|
}
|
|
681
|
-
.nodeView[data-v-
|
|
680
|
+
.nodeView[data-v-7702fcdb] {
|
|
682
681
|
box-sizing: border-box;
|
|
683
682
|
margin: 10px 10px;
|
|
684
683
|
width: 180px;
|
|
@@ -687,7 +686,7 @@
|
|
|
687
686
|
border-radius: 2px 2px 2px 2px;
|
|
688
687
|
padding: 20px 10px;
|
|
689
688
|
}
|
|
690
|
-
.nodeTitle[data-v-
|
|
689
|
+
.nodeTitle[data-v-7702fcdb] {
|
|
691
690
|
width: 90px;
|
|
692
691
|
height: 15px;
|
|
693
692
|
font-weight: 400;
|
|
@@ -702,7 +701,7 @@
|
|
|
702
701
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
703
702
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
704
703
|
}
|
|
705
|
-
.nodeContent[data-v-
|
|
704
|
+
.nodeContent[data-v-7702fcdb] {
|
|
706
705
|
/* width: 100%; */
|
|
707
706
|
height: 15px;
|
|
708
707
|
font-weight: 400;
|
|
@@ -717,19 +716,19 @@
|
|
|
717
716
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
718
717
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
719
718
|
}
|
|
720
|
-
.nodeContent-desc[data-v-
|
|
719
|
+
.nodeContent-desc[data-v-7702fcdb]{
|
|
721
720
|
}
|
|
722
|
-
.el-divider--horizontal[data-v-
|
|
721
|
+
.el-divider--horizontal[data-v-7702fcdb] {
|
|
723
722
|
margin: 12px 0;
|
|
724
723
|
}
|
|
725
|
-
.nodeView[data-v-
|
|
724
|
+
.nodeView[data-v-7702fcdb] {
|
|
726
725
|
border: 1px solid #5a90f9;
|
|
727
726
|
background: #eef3fe;
|
|
728
727
|
}
|
|
729
|
-
.nodeTitle[data-v-
|
|
728
|
+
.nodeTitle[data-v-7702fcdb] {
|
|
730
729
|
width: 80px;
|
|
731
730
|
}
|
|
732
|
-
.nodeView[data-v-
|
|
731
|
+
.nodeView[data-v-c176feb6] {
|
|
733
732
|
box-sizing: border-box;
|
|
734
733
|
margin: 10px 10px;
|
|
735
734
|
width: 180px;
|
|
@@ -738,7 +737,7 @@
|
|
|
738
737
|
border-radius: 2px 2px 2px 2px;
|
|
739
738
|
padding: 20px 10px;
|
|
740
739
|
}
|
|
741
|
-
.nodeTitle[data-v-
|
|
740
|
+
.nodeTitle[data-v-c176feb6] {
|
|
742
741
|
width: 90px;
|
|
743
742
|
height: 15px;
|
|
744
743
|
font-weight: 400;
|
|
@@ -753,7 +752,7 @@
|
|
|
753
752
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
754
753
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
755
754
|
}
|
|
756
|
-
.nodeContent[data-v-
|
|
755
|
+
.nodeContent[data-v-c176feb6] {
|
|
757
756
|
/* width: 100%; */
|
|
758
757
|
height: 15px;
|
|
759
758
|
font-weight: 400;
|
|
@@ -768,19 +767,20 @@
|
|
|
768
767
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
769
768
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
770
769
|
}
|
|
771
|
-
.nodeContent-desc[data-v-
|
|
770
|
+
.nodeContent-desc[data-v-c176feb6]{
|
|
772
771
|
}
|
|
773
|
-
.el-divider--horizontal[data-v-
|
|
772
|
+
.el-divider--horizontal[data-v-c176feb6] {
|
|
774
773
|
margin: 12px 0;
|
|
775
774
|
}
|
|
776
|
-
.nodeView[data-v-
|
|
775
|
+
.nodeView[data-v-c176feb6] {
|
|
777
776
|
border: 1px solid #5a90f9;
|
|
778
|
-
background: #eef3fe;
|
|
777
|
+
background: #eef3fe;
|
|
778
|
+
width: 180px;
|
|
779
|
+
min-height: 95px;
|
|
779
780
|
}
|
|
780
|
-
.
|
|
781
|
-
width: 80px;
|
|
781
|
+
.nodeContent[data-v-c176feb6] {
|
|
782
782
|
}
|
|
783
|
-
.nodeView[data-v-
|
|
783
|
+
.nodeView[data-v-b01d3a50] {
|
|
784
784
|
box-sizing: border-box;
|
|
785
785
|
margin: 10px 10px;
|
|
786
786
|
width: 180px;
|
|
@@ -789,7 +789,7 @@
|
|
|
789
789
|
border-radius: 2px 2px 2px 2px;
|
|
790
790
|
padding: 20px 10px;
|
|
791
791
|
}
|
|
792
|
-
.nodeTitle[data-v-
|
|
792
|
+
.nodeTitle[data-v-b01d3a50] {
|
|
793
793
|
width: 90px;
|
|
794
794
|
height: 15px;
|
|
795
795
|
font-weight: 400;
|
|
@@ -804,7 +804,7 @@
|
|
|
804
804
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
805
805
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
806
806
|
}
|
|
807
|
-
.nodeContent[data-v-
|
|
807
|
+
.nodeContent[data-v-b01d3a50] {
|
|
808
808
|
/* width: 100%; */
|
|
809
809
|
height: 15px;
|
|
810
810
|
font-weight: 400;
|
|
@@ -819,19 +819,59 @@
|
|
|
819
819
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
820
820
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
821
821
|
}
|
|
822
|
-
.nodeContent-desc[data-v-
|
|
822
|
+
.nodeContent-desc[data-v-b01d3a50]{
|
|
823
823
|
}
|
|
824
|
-
.el-divider--horizontal[data-v-
|
|
824
|
+
.el-divider--horizontal[data-v-b01d3a50] {
|
|
825
825
|
margin: 12px 0;
|
|
826
826
|
}
|
|
827
|
-
.nodeView[data-v-
|
|
827
|
+
.nodeView[data-v-b01d3a50] {
|
|
828
828
|
border: 1px solid #5a90f9;
|
|
829
829
|
background: #eef3fe;
|
|
830
830
|
}
|
|
831
|
-
.nodeTitle[data-v-
|
|
831
|
+
.nodeTitle[data-v-b01d3a50] {
|
|
832
832
|
width: 80px;
|
|
833
833
|
}
|
|
834
|
-
|
|
834
|
+
|
|
835
|
+
.node-content[data-v-69a854a3] {
|
|
836
|
+
width: 120px;
|
|
837
|
+
height: 44px;
|
|
838
|
+
background: #ffffff;
|
|
839
|
+
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
840
|
+
border-radius: 2px 2px 2px 2px;
|
|
841
|
+
}
|
|
842
|
+
.content[data-v-69a854a3] {
|
|
843
|
+
width: 28px;
|
|
844
|
+
height: 15px;
|
|
845
|
+
font-weight: 400;
|
|
846
|
+
font-size: 14px;
|
|
847
|
+
color: #333333;
|
|
848
|
+
line-height: 14px;
|
|
849
|
+
text-align: left;
|
|
850
|
+
font-style: normal;
|
|
851
|
+
text-transform: none;
|
|
852
|
+
padding: 5px 0px 4px 10px;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
.aaa[data-v-8bd72b80] {
|
|
856
|
+
width: 300px;
|
|
857
|
+
height: 200px;
|
|
858
|
+
background: #ffffff;
|
|
859
|
+
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
860
|
+
border-radius: 2px 2px 2px 2px;
|
|
861
|
+
}
|
|
862
|
+
.content[data-v-8bd72b80] {
|
|
863
|
+
width: 28px;
|
|
864
|
+
height: 15px;
|
|
865
|
+
font-weight: 400;
|
|
866
|
+
font-size: 14px;
|
|
867
|
+
color: #333333;
|
|
868
|
+
line-height: 14px;
|
|
869
|
+
text-align: left;
|
|
870
|
+
font-style: normal;
|
|
871
|
+
text-transform: none;
|
|
872
|
+
padding: 5px 0px 4px 10px;
|
|
873
|
+
}
|
|
874
|
+
.nodeView[data-v-221a60f8] {
|
|
835
875
|
box-sizing: border-box;
|
|
836
876
|
margin: 10px 10px;
|
|
837
877
|
width: 180px;
|
|
@@ -840,7 +880,7 @@
|
|
|
840
880
|
border-radius: 2px 2px 2px 2px;
|
|
841
881
|
padding: 20px 10px;
|
|
842
882
|
}
|
|
843
|
-
.nodeTitle[data-v-
|
|
883
|
+
.nodeTitle[data-v-221a60f8] {
|
|
844
884
|
width: 90px;
|
|
845
885
|
height: 15px;
|
|
846
886
|
font-weight: 400;
|
|
@@ -855,7 +895,7 @@
|
|
|
855
895
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
856
896
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
857
897
|
}
|
|
858
|
-
.nodeContent[data-v-
|
|
898
|
+
.nodeContent[data-v-221a60f8] {
|
|
859
899
|
/* width: 100%; */
|
|
860
900
|
height: 15px;
|
|
861
901
|
font-weight: 400;
|
|
@@ -870,19 +910,19 @@
|
|
|
870
910
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
871
911
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
872
912
|
}
|
|
873
|
-
.nodeContent-desc[data-v-
|
|
913
|
+
.nodeContent-desc[data-v-221a60f8]{
|
|
874
914
|
}
|
|
875
|
-
.el-divider--horizontal[data-v-
|
|
915
|
+
.el-divider--horizontal[data-v-221a60f8] {
|
|
876
916
|
margin: 12px 0;
|
|
877
917
|
}
|
|
878
|
-
.nodeView[data-v-
|
|
918
|
+
.nodeView[data-v-221a60f8] {
|
|
879
919
|
border: 1px solid #5a90f9;
|
|
880
920
|
background: #eef3fe;
|
|
881
921
|
}
|
|
882
|
-
.nodeTitle[data-v-
|
|
922
|
+
.nodeTitle[data-v-221a60f8] {
|
|
883
923
|
width: 80px;
|
|
884
924
|
}
|
|
885
|
-
.nodeView[data-v-
|
|
925
|
+
.nodeView[data-v-bd32480c] {
|
|
886
926
|
box-sizing: border-box;
|
|
887
927
|
margin: 10px 10px;
|
|
888
928
|
width: 180px;
|
|
@@ -891,7 +931,7 @@
|
|
|
891
931
|
border-radius: 2px 2px 2px 2px;
|
|
892
932
|
padding: 20px 10px;
|
|
893
933
|
}
|
|
894
|
-
.nodeTitle[data-v-
|
|
934
|
+
.nodeTitle[data-v-bd32480c] {
|
|
895
935
|
width: 90px;
|
|
896
936
|
height: 15px;
|
|
897
937
|
font-weight: 400;
|
|
@@ -906,7 +946,7 @@
|
|
|
906
946
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
907
947
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
908
948
|
}
|
|
909
|
-
.nodeContent[data-v-
|
|
949
|
+
.nodeContent[data-v-bd32480c] {
|
|
910
950
|
/* width: 100%; */
|
|
911
951
|
height: 15px;
|
|
912
952
|
font-weight: 400;
|
|
@@ -921,39 +961,20 @@
|
|
|
921
961
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
922
962
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
923
963
|
}
|
|
924
|
-
.nodeContent-desc[data-v-
|
|
964
|
+
.nodeContent-desc[data-v-bd32480c]{
|
|
925
965
|
}
|
|
926
|
-
.el-divider--horizontal[data-v-
|
|
966
|
+
.el-divider--horizontal[data-v-bd32480c] {
|
|
927
967
|
margin: 12px 0;
|
|
928
968
|
}
|
|
929
|
-
.nodeView[data-v-
|
|
969
|
+
.nodeView[data-v-bd32480c] {
|
|
930
970
|
border: 1px solid #5a90f9;
|
|
931
|
-
background: #eef3fe;
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
width: 80px;
|
|
935
|
-
}
|
|
936
|
-
|
|
937
|
-
.node-content[data-v-b28923f3] {
|
|
938
|
-
width: 120px;
|
|
939
|
-
height: 44px;
|
|
940
|
-
background: #ffffff;
|
|
941
|
-
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
942
|
-
border-radius: 2px 2px 2px 2px;
|
|
971
|
+
background: #eef3fe;
|
|
972
|
+
width: 180px;
|
|
973
|
+
min-height: 95px;
|
|
943
974
|
}
|
|
944
|
-
.
|
|
945
|
-
width: 28px;
|
|
946
|
-
height: 15px;
|
|
947
|
-
font-weight: 400;
|
|
948
|
-
font-size: 14px;
|
|
949
|
-
color: #333333;
|
|
950
|
-
line-height: 14px;
|
|
951
|
-
text-align: left;
|
|
952
|
-
font-style: normal;
|
|
953
|
-
text-transform: none;
|
|
954
|
-
padding: 5px 0px 4px 10px;
|
|
975
|
+
.nodeContent[data-v-bd32480c] {
|
|
955
976
|
}
|
|
956
|
-
.nodeView[data-v-
|
|
977
|
+
.nodeView[data-v-5911272d] {
|
|
957
978
|
box-sizing: border-box;
|
|
958
979
|
margin: 10px 10px;
|
|
959
980
|
width: 180px;
|
|
@@ -962,7 +983,7 @@
|
|
|
962
983
|
border-radius: 2px 2px 2px 2px;
|
|
963
984
|
padding: 20px 10px;
|
|
964
985
|
}
|
|
965
|
-
.nodeTitle[data-v-
|
|
986
|
+
.nodeTitle[data-v-5911272d] {
|
|
966
987
|
width: 90px;
|
|
967
988
|
height: 15px;
|
|
968
989
|
font-weight: 400;
|
|
@@ -977,7 +998,7 @@
|
|
|
977
998
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
978
999
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
979
1000
|
}
|
|
980
|
-
.nodeContent[data-v-
|
|
1001
|
+
.nodeContent[data-v-5911272d] {
|
|
981
1002
|
/* width: 100%; */
|
|
982
1003
|
height: 15px;
|
|
983
1004
|
font-weight: 400;
|
|
@@ -992,19 +1013,19 @@
|
|
|
992
1013
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
993
1014
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
994
1015
|
}
|
|
995
|
-
.nodeContent-desc[data-v-
|
|
1016
|
+
.nodeContent-desc[data-v-5911272d]{
|
|
996
1017
|
}
|
|
997
|
-
.el-divider--horizontal[data-v-
|
|
1018
|
+
.el-divider--horizontal[data-v-5911272d] {
|
|
998
1019
|
margin: 12px 0;
|
|
999
1020
|
}
|
|
1000
|
-
.nodeView[data-v-
|
|
1021
|
+
.nodeView[data-v-5911272d] {
|
|
1001
1022
|
border: 1px solid #5a90f9;
|
|
1002
1023
|
background: #eef3fe;
|
|
1003
1024
|
}
|
|
1004
|
-
.nodeTitle[data-v-
|
|
1025
|
+
.nodeTitle[data-v-5911272d] {
|
|
1005
1026
|
width: 80px;
|
|
1006
1027
|
}
|
|
1007
|
-
.nodeView[data-v-
|
|
1028
|
+
.nodeView[data-v-b1d2a966] {
|
|
1008
1029
|
box-sizing: border-box;
|
|
1009
1030
|
margin: 10px 10px;
|
|
1010
1031
|
width: 180px;
|
|
@@ -1013,7 +1034,7 @@
|
|
|
1013
1034
|
border-radius: 2px 2px 2px 2px;
|
|
1014
1035
|
padding: 20px 10px;
|
|
1015
1036
|
}
|
|
1016
|
-
.nodeTitle[data-v-
|
|
1037
|
+
.nodeTitle[data-v-b1d2a966] {
|
|
1017
1038
|
width: 90px;
|
|
1018
1039
|
height: 15px;
|
|
1019
1040
|
font-weight: 400;
|
|
@@ -1028,7 +1049,7 @@
|
|
|
1028
1049
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1029
1050
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1030
1051
|
}
|
|
1031
|
-
.nodeContent[data-v-
|
|
1052
|
+
.nodeContent[data-v-b1d2a966] {
|
|
1032
1053
|
/* width: 100%; */
|
|
1033
1054
|
height: 15px;
|
|
1034
1055
|
font-weight: 400;
|
|
@@ -1043,19 +1064,19 @@
|
|
|
1043
1064
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1044
1065
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1045
1066
|
}
|
|
1046
|
-
.nodeContent-desc[data-v-
|
|
1067
|
+
.nodeContent-desc[data-v-b1d2a966]{
|
|
1047
1068
|
}
|
|
1048
|
-
.el-divider--horizontal[data-v-
|
|
1069
|
+
.el-divider--horizontal[data-v-b1d2a966] {
|
|
1049
1070
|
margin: 12px 0;
|
|
1050
1071
|
}
|
|
1051
|
-
.nodeView[data-v-
|
|
1072
|
+
.nodeView[data-v-b1d2a966] {
|
|
1052
1073
|
border: 1px solid #5a90f9;
|
|
1053
1074
|
background: #eef3fe;
|
|
1054
1075
|
}
|
|
1055
|
-
.nodeTitle[data-v-
|
|
1076
|
+
.nodeTitle[data-v-b1d2a966] {
|
|
1056
1077
|
width: 80px;
|
|
1057
1078
|
}
|
|
1058
|
-
.nodeView[data-v-
|
|
1079
|
+
.nodeView[data-v-b604c489] {
|
|
1059
1080
|
box-sizing: border-box;
|
|
1060
1081
|
margin: 10px 10px;
|
|
1061
1082
|
width: 180px;
|
|
@@ -1064,7 +1085,7 @@
|
|
|
1064
1085
|
border-radius: 2px 2px 2px 2px;
|
|
1065
1086
|
padding: 20px 10px;
|
|
1066
1087
|
}
|
|
1067
|
-
.nodeTitle[data-v-
|
|
1088
|
+
.nodeTitle[data-v-b604c489] {
|
|
1068
1089
|
width: 90px;
|
|
1069
1090
|
height: 15px;
|
|
1070
1091
|
font-weight: 400;
|
|
@@ -1079,7 +1100,7 @@
|
|
|
1079
1100
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1080
1101
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1081
1102
|
}
|
|
1082
|
-
.nodeContent[data-v-
|
|
1103
|
+
.nodeContent[data-v-b604c489] {
|
|
1083
1104
|
/* width: 100%; */
|
|
1084
1105
|
height: 15px;
|
|
1085
1106
|
font-weight: 400;
|
|
@@ -1094,40 +1115,19 @@
|
|
|
1094
1115
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1095
1116
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1096
1117
|
}
|
|
1097
|
-
.nodeContent-desc[data-v-
|
|
1118
|
+
.nodeContent-desc[data-v-b604c489]{
|
|
1098
1119
|
}
|
|
1099
|
-
.el-divider--horizontal[data-v-
|
|
1120
|
+
.el-divider--horizontal[data-v-b604c489] {
|
|
1100
1121
|
margin: 12px 0;
|
|
1101
1122
|
}
|
|
1102
|
-
.nodeView[data-v-
|
|
1123
|
+
.nodeView[data-v-b604c489] {
|
|
1103
1124
|
border: 1px solid #5a90f9;
|
|
1104
|
-
background: #eef3fe;
|
|
1105
|
-
width: 180px;
|
|
1106
|
-
min-height: 95px;
|
|
1107
|
-
}
|
|
1108
|
-
.nodeContent[data-v-c176feb6] {
|
|
1109
|
-
}
|
|
1110
|
-
|
|
1111
|
-
.aaa[data-v-8bd72b80] {
|
|
1112
|
-
width: 300px;
|
|
1113
|
-
height: 200px;
|
|
1114
|
-
background: #ffffff;
|
|
1115
|
-
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
1116
|
-
border-radius: 2px 2px 2px 2px;
|
|
1125
|
+
background: #eef3fe;
|
|
1117
1126
|
}
|
|
1118
|
-
.
|
|
1119
|
-
width:
|
|
1120
|
-
height: 15px;
|
|
1121
|
-
font-weight: 400;
|
|
1122
|
-
font-size: 14px;
|
|
1123
|
-
color: #333333;
|
|
1124
|
-
line-height: 14px;
|
|
1125
|
-
text-align: left;
|
|
1126
|
-
font-style: normal;
|
|
1127
|
-
text-transform: none;
|
|
1128
|
-
padding: 5px 0px 4px 10px;
|
|
1127
|
+
.nodeTitle[data-v-b604c489] {
|
|
1128
|
+
width: 80px;
|
|
1129
1129
|
}
|
|
1130
|
-
.nodeView[data-v-
|
|
1130
|
+
.nodeView[data-v-4c6dfa4a] {
|
|
1131
1131
|
box-sizing: border-box;
|
|
1132
1132
|
margin: 10px 10px;
|
|
1133
1133
|
width: 180px;
|
|
@@ -1136,7 +1136,7 @@
|
|
|
1136
1136
|
border-radius: 2px 2px 2px 2px;
|
|
1137
1137
|
padding: 20px 10px;
|
|
1138
1138
|
}
|
|
1139
|
-
.nodeTitle[data-v-
|
|
1139
|
+
.nodeTitle[data-v-4c6dfa4a] {
|
|
1140
1140
|
width: 90px;
|
|
1141
1141
|
height: 15px;
|
|
1142
1142
|
font-weight: 400;
|
|
@@ -1151,7 +1151,7 @@
|
|
|
1151
1151
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1152
1152
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1153
1153
|
}
|
|
1154
|
-
.nodeContent[data-v-
|
|
1154
|
+
.nodeContent[data-v-4c6dfa4a] {
|
|
1155
1155
|
/* width: 100%; */
|
|
1156
1156
|
height: 15px;
|
|
1157
1157
|
font-weight: 400;
|
|
@@ -1166,19 +1166,20 @@
|
|
|
1166
1166
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1167
1167
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1168
1168
|
}
|
|
1169
|
-
.nodeContent-desc[data-v-
|
|
1169
|
+
.nodeContent-desc[data-v-4c6dfa4a]{
|
|
1170
1170
|
}
|
|
1171
|
-
.el-divider--horizontal[data-v-
|
|
1171
|
+
.el-divider--horizontal[data-v-4c6dfa4a] {
|
|
1172
1172
|
margin: 12px 0;
|
|
1173
1173
|
}
|
|
1174
|
-
.nodeView[data-v-
|
|
1174
|
+
.nodeView[data-v-4c6dfa4a] {
|
|
1175
1175
|
border: 1px solid #5a90f9;
|
|
1176
|
-
background: #eef3fe;
|
|
1176
|
+
background: #eef3fe;
|
|
1177
|
+
width: 180px;
|
|
1178
|
+
min-height: 95px;
|
|
1177
1179
|
}
|
|
1178
|
-
.
|
|
1179
|
-
width: 80px;
|
|
1180
|
+
.nodeContent[data-v-4c6dfa4a] {
|
|
1180
1181
|
}
|
|
1181
|
-
.nodeView[data-v-
|
|
1182
|
+
.nodeView[data-v-6d0cd280] {
|
|
1182
1183
|
box-sizing: border-box;
|
|
1183
1184
|
margin: 10px 10px;
|
|
1184
1185
|
width: 180px;
|
|
@@ -1187,7 +1188,7 @@
|
|
|
1187
1188
|
border-radius: 2px 2px 2px 2px;
|
|
1188
1189
|
padding: 20px 10px;
|
|
1189
1190
|
}
|
|
1190
|
-
.nodeTitle[data-v-
|
|
1191
|
+
.nodeTitle[data-v-6d0cd280] {
|
|
1191
1192
|
width: 90px;
|
|
1192
1193
|
height: 15px;
|
|
1193
1194
|
font-weight: 400;
|
|
@@ -1202,7 +1203,7 @@
|
|
|
1202
1203
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1203
1204
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1204
1205
|
}
|
|
1205
|
-
.nodeContent[data-v-
|
|
1206
|
+
.nodeContent[data-v-6d0cd280] {
|
|
1206
1207
|
/* width: 100%; */
|
|
1207
1208
|
height: 15px;
|
|
1208
1209
|
font-weight: 400;
|
|
@@ -1217,51 +1218,50 @@
|
|
|
1217
1218
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1218
1219
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1219
1220
|
}
|
|
1220
|
-
.nodeContent-desc[data-v-
|
|
1221
|
+
.nodeContent-desc[data-v-6d0cd280]{
|
|
1221
1222
|
}
|
|
1222
|
-
.el-divider--horizontal[data-v-
|
|
1223
|
+
.el-divider--horizontal[data-v-6d0cd280] {
|
|
1223
1224
|
margin: 12px 0;
|
|
1224
1225
|
}
|
|
1225
|
-
.nodeView[data-v-
|
|
1226
|
+
.nodeView[data-v-6d0cd280] {
|
|
1226
1227
|
border: 1px solid #5a90f9;
|
|
1227
|
-
background: #eef3fe;
|
|
1228
|
-
width: 180px;
|
|
1229
|
-
min-height: 95px;
|
|
1228
|
+
background: #eef3fe;
|
|
1230
1229
|
}
|
|
1231
|
-
.
|
|
1230
|
+
.nodeTitle[data-v-6d0cd280] {
|
|
1231
|
+
width: 80px;
|
|
1232
1232
|
}
|
|
1233
1233
|
|
|
1234
1234
|
.el-radio[data-v-1bbd6187] {
|
|
1235
1235
|
margin-right: 10px;
|
|
1236
1236
|
}
|
|
1237
1237
|
|
|
1238
|
-
.el-
|
|
1239
|
-
margin-right: 10px;
|
|
1240
|
-
}
|
|
1241
|
-
[data-v-1ee0eb33] .el-empty__description {
|
|
1242
|
-
margin-top: 0px;
|
|
1243
|
-
}
|
|
1244
|
-
|
|
1245
|
-
.el-select + .el-input[data-v-dbffbd8f] {
|
|
1238
|
+
.el-select + .el-input[data-v-7fcf8a84] {
|
|
1246
1239
|
margin-left: 10px;
|
|
1247
1240
|
}
|
|
1248
|
-
.el-input + .el-input[data-v-
|
|
1241
|
+
.el-input + .el-input[data-v-7fcf8a84] {
|
|
1249
1242
|
margin-left: 10px;
|
|
1250
1243
|
}
|
|
1251
|
-
.el-input + .el-button[data-v-
|
|
1244
|
+
.el-input + .el-button[data-v-7fcf8a84] {
|
|
1252
1245
|
margin-left: 10px;
|
|
1253
1246
|
}
|
|
1254
1247
|
|
|
1255
|
-
.el-select + .el-input[data-v-
|
|
1248
|
+
.el-select + .el-input[data-v-3918f594] {
|
|
1256
1249
|
margin-left: 10px;
|
|
1257
1250
|
}
|
|
1258
|
-
.el-input + .el-input[data-v-
|
|
1251
|
+
.el-input + .el-input[data-v-3918f594] {
|
|
1259
1252
|
margin-left: 10px;
|
|
1260
1253
|
}
|
|
1261
|
-
.el-input + .el-button[data-v-
|
|
1254
|
+
.el-input + .el-button[data-v-3918f594] {
|
|
1262
1255
|
margin-left: 10px;
|
|
1263
1256
|
}
|
|
1264
1257
|
|
|
1258
|
+
.el-radio[data-v-1ee0eb33] {
|
|
1259
|
+
margin-right: 10px;
|
|
1260
|
+
}
|
|
1261
|
+
[data-v-1ee0eb33] .el-empty__description {
|
|
1262
|
+
margin-top: 0px;
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
1265
|
[data-v-9cc733d7] .el-cascader-menu {
|
|
1266
1266
|
min-width: 120px !important;
|
|
1267
1267
|
}
|
|
@@ -1276,13 +1276,13 @@
|
|
|
1276
1276
|
cursor: pointer;
|
|
1277
1277
|
}
|
|
1278
1278
|
|
|
1279
|
-
[data-v-9a3ee19e] .el-dropdown {
|
|
1280
|
-
vertical-align: middle;
|
|
1281
|
-
}
|
|
1282
|
-
|
|
1283
1279
|
[data-v-2d06523b] .el-upload {
|
|
1284
1280
|
width: 100%;
|
|
1285
1281
|
}
|
|
1286
1282
|
[data-v-2d06523b] .el-button {
|
|
1287
1283
|
width: 100%;
|
|
1288
1284
|
}
|
|
1285
|
+
|
|
1286
|
+
[data-v-9a3ee19e] .el-dropdown {
|
|
1287
|
+
vertical-align: middle;
|
|
1288
|
+
}
|