@zgfe/modules-dm 1.0.42-alpha.8 → 1.0.42-alpha.9

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.
Files changed (35) hide show
  1. package/es/components/demo.js +1 -1
  2. package/es/index.d.ts +2 -3
  3. package/es/index.js +2 -3
  4. package/es/modules/{dataCollection → dataManage}/components/createVirtualDrawer.js +1 -1
  5. package/es/modules/{dataCollection → dataManage}/components/eventFilter/styles/index.less +1 -1
  6. package/es/modules/{dataCollection → dataManage}/components/eventGroupingDrawer.js +3 -3
  7. package/es/modules/{dataCollection → dataManage}/components/tablePlus.js +1 -1
  8. package/es/modules/{dataCollection → dataManage}/components/virtualTablePlus.js +3 -3
  9. package/es/modules/dataManage/index.d.ts +1 -16
  10. package/es/modules/dataManage/index.js +81 -14
  11. package/es/modules/dataManage/styles/index.less +831 -26
  12. package/package.json +1 -1
  13. package/es/modules/dataCollection/index.d.ts +0 -19
  14. package/es/modules/dataCollection/index.js +0 -93
  15. package/es/modules/dataCollection/styles/index.less +0 -842
  16. /package/es/modules/{dataCollection → dataManage}/collectionAttributeList.d.ts +0 -0
  17. /package/es/modules/{dataCollection → dataManage}/collectionAttributeList.js +0 -0
  18. /package/es/modules/{dataCollection → dataManage}/collectionEventList.d.ts +0 -0
  19. /package/es/modules/{dataCollection → dataManage}/collectionEventList.js +0 -0
  20. /package/es/modules/{dataCollection → dataManage}/components/createVirtualDrawer.d.ts +0 -0
  21. /package/es/modules/{dataCollection → dataManage}/components/eventFilter/index.d.ts +0 -0
  22. /package/es/modules/{dataCollection → dataManage}/components/eventFilter/index.js +0 -0
  23. /package/es/modules/{dataCollection → dataManage}/components/eventFilter/types.d.ts +0 -0
  24. /package/es/modules/{dataCollection → dataManage}/components/eventFilter/types.js +0 -0
  25. /package/es/modules/{dataCollection → dataManage}/components/eventGroupingDrawer.d.ts +0 -0
  26. /package/es/modules/{dataCollection → dataManage}/components/eventItem.d.ts +0 -0
  27. /package/es/modules/{dataCollection → dataManage}/components/eventItem.js +0 -0
  28. /package/es/modules/{dataCollection → dataManage}/components/selectAttributes.d.ts +0 -0
  29. /package/es/modules/{dataCollection → dataManage}/components/selectAttributes.js +0 -0
  30. /package/es/modules/{dataCollection → dataManage}/components/tablePlus.d.ts +0 -0
  31. /package/es/modules/{dataCollection → dataManage}/components/virtualTablePlus.d.ts +0 -0
  32. /package/es/modules/{dataCollection → dataManage}/types.d.ts +0 -0
  33. /package/es/modules/{dataCollection → dataManage}/types.js +0 -0
  34. /package/es/modules/{dataCollection → dataManage}/virtualEventList.d.ts +0 -0
  35. /package/es/modules/{dataCollection → dataManage}/virtualEventList.js +0 -0
@@ -1,36 +1,841 @@
1
1
  @import '~@zgfe/business-lib/es/assets/styles/inner.less';
2
- .data-manage {
2
+ .data-collection {
3
3
  position: relative;
4
- min-height: 100%;
5
- background: #fafafb;
6
- .tabs {
7
- height: 48px;
8
- .ant-tabs-tab-btn {
9
- font-size: 16px !important;
10
- }
11
- .ant-tabs-nav {
12
- height: 48px;
13
- background: #fff;
14
- .ant-tabs-tab {
15
- margin: 0 0 0 24px !important;
16
- }
17
- }
18
- }
19
- .tabs-collapsed {
20
- min-width: 48px;
21
- .tabs {
22
- min-width: 48px;
23
- .tab {
24
- text-align: center;
4
+ height: calc(100vh - 80px);
5
+ // padding: 24px;
6
+ background: #fff;
7
+ border-radius: 8px;
8
+ > :nth-child(1) {
9
+ > :nth-child(1) {
10
+ margin-bottom: 0;
11
+ }
12
+ > :nth-child(2) {
13
+ margin: 16px;
14
+ padding: 24px;
15
+ }
16
+ }
17
+ .ant-select {
18
+ border-radius: 4px !important;
19
+ }
20
+ .loading {
21
+ position: fixed;
22
+ top: 70%;
23
+ left: 55%;
24
+ }
25
+ .ant-tabs-tab + .ant-tabs-tab {
26
+ margin: 0 0 0 24px;
27
+ }
28
+ .creact-group {
29
+ .ant-modal-body {
30
+ padding: 3px 20px 20px 20px !important;
31
+ }
32
+ }
33
+ .ant-radio-group {
34
+ > :nth-child(1) {
35
+ border-radius: 4px 0px 0px 4px;
36
+ }
37
+ > :last-child {
38
+ border-radius: 0px 4px 4px 0px;
39
+ }
40
+ }
41
+ .ant-radio-button-wrapper-checked {
42
+ background: #e8efff;
43
+ }
44
+ }
45
+
46
+ .attr-list,
47
+ .virtual-event-list,
48
+ .event-list {
49
+ position: relative;
50
+ &-back {
51
+ margin-bottom: 10px;
52
+ cursor: pointer;
53
+ user-select: none;
54
+ }
55
+ .hidden-box {
56
+ display: none;
57
+ }
58
+ .error-row {
59
+ color: #fb5547;
60
+ }
61
+ .fuzhi {
62
+ display: none;
63
+ margin-left: 10px;
64
+ color: #666;
65
+ font-size: 16px !important;
66
+ &:hover {
67
+ color: @primary-color;
68
+ }
69
+ }
70
+ }
71
+
72
+ .virtual-event-list,
73
+ .event-list {
74
+ &-top-box {
75
+ position: relative;
76
+ display: flex;
77
+ margin-bottom: 17px;
78
+ .top-select {
79
+ width: 264px;
80
+ margin-right: 12px;
81
+ }
82
+ .top-input {
83
+ width: 264px;
84
+ margin-right: 12px;
85
+ .ant-input-prefix {
86
+ margin-right: 8px;
87
+ }
88
+ }
89
+ .top-total {
90
+ line-height: 32px;
91
+ span {
92
+ margin: 0 4px;
93
+ color: @primary-color;
94
+ font-weight: bold;
95
+ }
96
+ }
97
+ .top-button {
98
+ position: absolute;
99
+ top: 0;
100
+ right: 0;
101
+ display: flex;
102
+ gap: 16px;
103
+ line-height: 100%;
104
+ .button:not(.disabled) {
105
+ color: #1454e5;
106
+ border: 1px solid #1454e5;
107
+ }
108
+ }
109
+ }
110
+ .table-plus {
111
+ &-table {
112
+ .ant-table {
113
+ border-radius: 8px !important;
114
+ .ant-table-thead {
115
+ > tr > th {
116
+ height: 50px;
117
+ padding: 0 16px;
118
+ }
119
+ }
120
+ .ant-table-tbody {
121
+ > tr > td {
122
+ height: 50px;
123
+ padding: 0 16px;
124
+ }
125
+ }
126
+ table {
127
+ border-collapse: collapse;
128
+ }
129
+ }
130
+ .ant-table-cell-row-hover {
131
+ .bsicon {
132
+ display: inline-block !important;
133
+ }
134
+ }
135
+ .alias_name_popover {
136
+ width: 200px;
137
+ word-break: break-all;
138
+ background: red;
139
+ }
140
+ .ant-input:focus,
141
+ .ant-input-focused {
142
+ background-color: #fff !important;
143
+ border-bottom: 1px solid @primary-color;
144
+ border-radius: 0 !important;
145
+ box-shadow: none !important;
146
+ }
147
+ .group-row {
148
+ // border-top: 12px solid #f5f5f5;
149
+ > :nth-child(1) {
150
+ display: flex !important;
151
+ align-items: center !important;
152
+ }
153
+ .ant-table-cell-fix-left {
154
+ left: 0px;
155
+ display: block;
156
+ width: 500px;
157
+ background: #fff;
158
+ }
159
+ .ant-table-cell-fix-left-first::after,
160
+ .ant-table-cell-fix-left-last::after {
161
+ box-shadow: none;
162
+ }
163
+ td {
164
+ padding: 6px 16px;
165
+ }
166
+ :last-child {
167
+ padding: 0;
168
+ }
169
+ td:not(:first-child, :last-child) > * {
170
+ display: none;
171
+ }
172
+ }
173
+ .group-box {
174
+ display: flex;
175
+ width: 800px;
176
+ line-height: 30px;
177
+ .ant-input {
178
+ width: 150px;
179
+ border: none;
180
+ }
181
+ .bsicon {
182
+ margin-right: 4px;
183
+ font-size: 18px !important;
184
+ }
185
+ .group-handle {
186
+ margin-left: 30px;
187
+ cursor: pointer;
188
+ user-select: none;
189
+ }
190
+ }
191
+ .edit-del {
25
192
  .bsicon {
26
- margin: 0 !important;
193
+ margin-left: 15px;
194
+ font-size: 16px !important;
195
+ cursor: pointer;
27
196
  }
197
+ :first-child:hover {
198
+ color: @primary-color;
199
+ }
200
+ :last-child:hover {
201
+ color: red;
202
+ }
203
+ }
204
+ .set-box {
205
+ display: flex;
206
+ color: #165dff;
207
+ cursor: pointer;
208
+ > :nth-child(1) {
209
+ margin-right: 16px;
210
+ }
211
+ }
212
+ .select-style {
213
+ width: 126px;
214
+ .ant-select-selection-item {
215
+ color: #021429;
216
+ font-weight: 500;
217
+ }
218
+ }
219
+ .event_attrs {
220
+ .bsicon {
221
+ margin-left: 12px;
222
+ font-size: 16px !important;
223
+ &:hover {
224
+ color: @primary-color;
225
+ }
226
+ }
227
+ }
228
+ .event_name {
229
+ display: flex;
230
+ .event_name-text {
231
+ display: -webkit-box;
232
+ // max-width: 120px;
233
+ overflow: hidden;
234
+ cursor: pointer;
235
+ -webkit-box-orient: vertical;
236
+ -webkit-line-clamp: 1;
237
+ }
238
+ .expired {
239
+ display: flex;
240
+ gap: 4px;
241
+ align-items: flex-start;
242
+ margin-left: 8px;
243
+ padding: 2px 8px;
244
+ color: #fd9f41;
245
+ font-size: 14px;
246
+ background: #ffecd9;
247
+ border-radius: 2px;
248
+ }
249
+ .copy-text {
250
+ display: none;
251
+ margin-left: 10px;
252
+ font-size: 16px !important;
253
+ cursor: pointer;
254
+ }
255
+ .copy-text:hover {
256
+ color: @primary-color;
257
+ }
258
+ .collect-icon,
259
+ .collect-icon-active {
260
+ margin: 0 4px;
261
+ font-size: 16px !important;
262
+ cursor: pointer;
263
+ }
264
+ .collect-icon {
265
+ color: #999;
266
+ opacity: 0;
267
+ }
268
+ .collect-icon:hover {
269
+ color: #f2d074;
270
+ }
271
+ .collect-icon-active {
272
+ color: #fd9f41;
273
+ }
274
+ .ant-checkbox-wrapper {
275
+ align-items: center;
276
+ margin-top: -6px;
277
+ }
278
+ }
279
+ .alias_name {
280
+ display: flex;
281
+ border: none;
282
+ cursor: pointer;
283
+ .alias_name_text {
284
+ display: -webkit-box;
285
+ max-width: 167px;
286
+ overflow: hidden;
287
+ cursor: pointer;
288
+ -webkit-box-orient: vertical;
289
+ -webkit-line-clamp: 1;
290
+ }
291
+ .edit-alias-name {
292
+ display: none;
293
+ margin-left: 10px;
294
+ font-size: 16px !important;
295
+ }
296
+ .edit-alias-name:hover {
297
+ color: @primary-color;
298
+ }
299
+ }
300
+ .bind-event,
301
+ .description {
302
+ display: -webkit-box;
303
+ max-width: 180px;
304
+ overflow: hidden;
305
+ cursor: pointer;
306
+ -webkit-box-orient: vertical;
307
+ -webkit-line-clamp: 1;
308
+ }
309
+ .ant-table-row:hover {
310
+ .collect-icon {
311
+ opacity: 1;
312
+ }
313
+ .copy-text {
314
+ display: block;
315
+ }
316
+ .edit-alias-name {
317
+ display: block;
318
+ }
319
+ }
320
+ .set {
321
+ color: @primary-color;
322
+ text-align: center;
323
+ cursor: pointer;
324
+ user-select: none;
325
+ }
326
+ .set-error {
327
+ color: #86909c;
328
+ }
329
+ }
330
+ }
331
+ }
332
+
333
+ .attr-list {
334
+ .ant-table {
335
+ overflow: hidden;
336
+ border: 1px solid #ecedf0;
337
+ border-radius: 8px;
338
+ }
339
+ .attr-name {
340
+ display: flex;
341
+ .attr-name-text {
342
+ display: -webkit-box;
343
+ width: 120px;
344
+ overflow: hidden;
345
+ -webkit-box-orient: vertical;
346
+ -webkit-line-clamp: 1;
347
+ }
348
+ .tishiicon {
349
+ margin-right: 6px;
350
+ }
351
+ &:hover {
352
+ .fuzhi {
353
+ display: inline-block;
354
+ cursor: pointer;
355
+ }
356
+ }
357
+ }
358
+ .alias_name {
359
+ border: none;
360
+ cursor: pointer;
361
+ }
362
+ .ant-input:focus,
363
+ .ant-input-focused {
364
+ background-color: #fff !important;
365
+ border-bottom: 1px solid @primary-color;
366
+ border-radius: 0 !important;
367
+ box-shadow: none !important;
368
+ }
369
+ .attr_alias_name {
370
+ cursor: pointer;
371
+ user-select: none;
372
+ &:not(.disabled):hover {
373
+ color: @primary-color;
374
+ }
375
+ }
376
+ .button-box {
377
+ display: flex;
378
+ margin-top: -24px;
379
+ margin-bottom: 14px;
380
+ .ant-btn {
381
+ margin-right: 20px;
382
+ }
383
+ .bsicon {
384
+ margin-right: 6px;
385
+ }
386
+ }
387
+ .clearData {
388
+ position: absolute;
389
+ top: 75px;
390
+ right: 26px;
391
+ text-align: right;
392
+ cursor: pointer;
393
+ user-select: none;
394
+ }
395
+ }
396
+
397
+ .virtual-event-list {
398
+ .table-plus {
399
+ &-table {
400
+ .event_name-text:hover {
401
+ color: #165dff;
402
+ }
403
+ }
404
+ }
405
+ }
406
+
407
+ .event-list-drawer {
408
+ .ant-select {
409
+ border-radius: 4px !important;
410
+ }
411
+ .ant-drawer-header-title {
412
+ height: 20px;
413
+ .ant-drawer-close {
414
+ position: absolute;
415
+ right: 6px;
416
+ }
417
+ }
418
+ .ant-drawer-mask {
419
+ background: rgba(0, 0, 0, 0.8);
420
+ }
421
+ }
422
+
423
+ .create-virtual-drawer {
424
+ .ant-select {
425
+ border-radius: 4px !important;
426
+ }
427
+ #basic {
428
+ padding-bottom: 100px;
429
+ .ant-input {
430
+ border: none;
431
+ }
432
+ }
433
+ &-desc {
434
+ .ant-form-item-control {
435
+ max-width: 100%;
436
+ }
437
+ }
438
+ &-add {
439
+ color: #165dff;
440
+ cursor: pointer;
441
+ &-icon {
442
+ margin-right: 8px;
443
+ font-weight: 900;
444
+ font-size: 18px !important;
445
+ vertical-align: -2px;
446
+ }
447
+ }
448
+ &-see-box {
449
+ > div {
450
+ display: flex;
451
+ gap: 8px;
452
+ margin-bottom: 16px;
453
+ color: #021429;
454
+ span {
455
+ width: 84px;
456
+ min-width: 84px;
457
+ color: #5f6085;
458
+ text-align: right;
459
+ }
460
+ }
461
+ }
462
+ .ant-drawer-close {
463
+ display: none;
464
+ }
465
+ .qingchu {
466
+ font-size: 20px !important;
467
+ cursor: pointer;
468
+ }
469
+ &-eventDataBox {
470
+ margin-top: 24px;
471
+ padding-bottom: 24px;
472
+ > :nth-child(1) {
473
+ color: #5f6085;
474
+ }
475
+ > :nth-child(1)::before {
476
+ display: inline-block;
477
+ margin-right: 4px;
478
+ color: #ff4d4f;
479
+ font-size: 14px;
480
+ font-family: SimSun, sans-serif;
481
+ line-height: 1;
482
+ content: '*';
483
+ }
484
+ > :nth-child(2) {
485
+ margin-top: 8px;
486
+ color: #67727f;
487
+ font-size: 12px;
488
+ }
489
+ }
490
+ &-eventDataBox.see {
491
+ > :nth-child(1) {
492
+ color: #5f6085;
493
+ }
494
+ > :nth-child(2) {
495
+ color: #67727f;
496
+ }
497
+ }
498
+ &-formList {
499
+ margin-top: 16px;
500
+ .ant-form-item {
501
+ width: 100%;
502
+ max-width: 100%;
503
+ margin-bottom: 16px !important;
504
+ .ant-col {
505
+ width: 100%;
506
+ max-width: 100%;
28
507
  }
29
508
  }
30
509
  }
31
- .dmcontent {
32
- height: calc(100vh - 48px);
510
+ &-formSubmit {
511
+ position: absolute;
512
+ right: 0;
513
+ bottom: 0;
514
+ display: flex;
515
+ gap: 16px;
516
+ justify-content: end;
517
+ width: 100%;
33
518
  padding: 16px;
34
- background: #fafafb;
519
+ padding-right: 24px;
520
+ background: #fff;
521
+ border-top: 1px solid #f2f3f4;
522
+ }
523
+ .ant-drawer-content,
524
+ .ant-drawer-wrapper-body {
525
+ overflow: hidden !important;
526
+ }
527
+ }
528
+
529
+ .event-grouping-drawer {
530
+ &-box {
531
+ &-header {
532
+ display: flex;
533
+ align-items: center;
534
+ justify-content: space-between;
535
+ margin-top: 16px;
536
+ margin-bottom: 12px;
537
+ > div {
538
+ display: flex;
539
+ gap: 12px;
540
+ align-items: center;
541
+ justify-content: start;
542
+ }
543
+ .operate-left {
544
+ display: flex;
545
+ gap: 12px;
546
+ align-items: center;
547
+ justify-content: start;
548
+ .fangxiangshang {
549
+ transform: rotateZ(90deg);
550
+ }
551
+ > :nth-child(1) {
552
+ display: flex;
553
+ gap: 8px;
554
+ align-items: center;
555
+ justify-content: start;
556
+ > :nth-child(1) {
557
+ color: #9aa1a9;
558
+ }
559
+ > :nth-child(2) {
560
+ font-weight: 500;
561
+ }
562
+ .zhongmingming {
563
+ cursor: pointer;
564
+ }
565
+ .zhongmingming:hover {
566
+ color: #165dff;
567
+ }
568
+ }
569
+ > :last-child {
570
+ color: #9aa1a9;
571
+ }
572
+ }
573
+ .operate-right {
574
+ > :not(.ant-checkbox-wrapper):not(:last-child) {
575
+ padding: 0 8px;
576
+ cursor: pointer;
577
+ }
578
+ .tuozhuai1 {
579
+ font-size: 18px !important;
580
+ cursor: move;
581
+ }
582
+ .handle:hover {
583
+ color: #165dff;
584
+ }
585
+ .handle-delete:hover {
586
+ color: #fb5547;
587
+ }
588
+ }
589
+ }
590
+ &-content {
591
+ display: flex;
592
+ flex-wrap: wrap;
593
+ > div {
594
+ display: flex;
595
+ flex-wrap: wrap;
596
+ gap: 12px;
597
+ justify-content: flex-start;
598
+ width: 100%;
599
+ .checkbox-item {
600
+ display: flex;
601
+ flex-shrink: 0;
602
+ align-items: center;
603
+ width: calc(25% - 9px);
604
+ height: 40px;
605
+ margin: 0;
606
+ padding: 9px 0 9px 16px;
607
+ background: #fafafb;
608
+ border-radius: 4px;
609
+ .ant-checkbox {
610
+ margin-top: -6px;
611
+ }
612
+ .ant-checkbox + span {
613
+ display: -webkit-box;
614
+ max-width: 100%;
615
+ overflow: hidden;
616
+ cursor: pointer;
617
+ user-select: none;
618
+ -webkit-box-orient: vertical;
619
+ -webkit-line-clamp: 1;
620
+ }
621
+ }
622
+ }
623
+ .event-hidden {
624
+ color: #ccd0d4;
625
+ }
626
+ }
627
+ &-content.close {
628
+ display: none;
629
+ }
630
+ }
631
+ &-top-box {
632
+ display: flex;
633
+ align-items: center;
634
+ justify-content: space-between;
635
+ margin-top: -8px;
636
+ .ant-btn {
637
+ height: 32px;
638
+ }
639
+ .ant-input-affix-wrapper {
640
+ width: 374px;
641
+ border: none;
642
+ }
643
+ .ant-input-prefix {
644
+ margin-right: 10px;
645
+ }
646
+ }
647
+ .ant-drawer-content-wrapper {
648
+ overflow-x: hidden;
649
+ }
650
+ .ant-drawer-content,
651
+ .ant-drawer-wrapper-body {
652
+ overflow: hidden !important;
653
+ }
654
+ .ant-drawer-title {
655
+ span {
656
+ margin-left: 8px;
657
+ color: #9aa1a9;
658
+ font-size: 12px;
659
+ }
660
+ }
661
+ .ant-drawer-close {
662
+ display: none;
663
+ }
664
+ .ant-drawer-extra {
665
+ .qingchu {
666
+ font-size: 20px !important;
667
+ cursor: pointer;
668
+ }
669
+ }
670
+ }
671
+
672
+ .event-grouping-drawer-sortablelist {
673
+ z-index: 99999;
674
+ }
675
+
676
+ .group-delete-modal {
677
+ .ant-modal-body {
678
+ padding: 24px;
679
+ }
680
+ .ant-modal-confirm-body {
681
+ .tishi1 {
682
+ margin-right: 2px;
683
+ color: #fd9f41;
684
+ font-size: 24px !important;
685
+ }
686
+ }
687
+ .ant-modal-confirm-title {
688
+ display: inline !important;
689
+ color: #021429 !important;
690
+ font-weight: 500;
691
+ font-size: 24px !important;
692
+ }
693
+ .ant-modal-confirm-content {
694
+ margin-top: 20px !important;
695
+ }
696
+ }
697
+
698
+ .move-popover {
699
+ .ant-popover-inner-content {
700
+ padding: 22px 16px 30px 16px;
701
+ .move-content {
702
+ > div {
703
+ margin-bottom: 8px;
704
+ }
705
+ > :last-child {
706
+ display: flex;
707
+ gap: 8px;
708
+ align-items: center;
709
+ justify-content: end;
710
+ margin-bottom: 0;
711
+ }
712
+ }
713
+ }
714
+ }
715
+ .move-popover.hidden {
716
+ display: none;
717
+ }
718
+
719
+ .ant-input-disabled,
720
+ .disabled {
721
+ cursor: not-allowed !important;
722
+ }
723
+
724
+ .select-attributes {
725
+ &-box {
726
+ display: flex;
727
+ width: 616px;
728
+ height: 380px;
729
+ background: #fff;
730
+ border-radius: 10px;
731
+ box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
732
+ &-left {
733
+ display: flex;
734
+ flex-direction: column;
735
+ width: 205px;
736
+ height: 380px;
737
+ padding: 8px;
738
+ overflow-y: auto;
739
+ box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
740
+ > div {
741
+ display: flex;
742
+ justify-content: space-between;
743
+ padding: 6px 12px;
744
+ }
745
+ .active {
746
+ color: #fff;
747
+ background: #165dff;
748
+ border-radius: 4px;
749
+ > :nth-child(2) {
750
+ padding: 0px 4px;
751
+ border: 1px solid #fff;
752
+ border-radius: 10px;
753
+ }
754
+ }
755
+ }
756
+ &-right {
757
+ width: 100%;
758
+ height: 380px;
759
+ padding: 8px;
760
+ > :nth-child(2) {
761
+ display: flex;
762
+ flex-direction: column;
763
+ gap: 8px;
764
+ align-items: flex-start;
765
+ width: 100%;
766
+ height: 320px;
767
+ margin-top: 8px;
768
+ overflow-y: auto;
769
+ > div {
770
+ display: flex;
771
+ flex-shrink: 0;
772
+ gap: 10px;
773
+ align-items: center;
774
+ align-self: stretch;
775
+ height: 32px;
776
+ padding: 0px 16px;
777
+ }
778
+ .active {
779
+ background: #e8efff;
780
+ }
781
+ }
782
+ }
783
+ }
784
+ &-select {
785
+ display: flex;
786
+ gap: 10px;
787
+ align-items: center;
788
+ justify-content: flex-start;
789
+ margin-top: 16px;
790
+ > :nth-child(1) {
791
+ width: 32px;
792
+ color: #5f6085;
793
+ }
794
+ }
795
+ &-modal-box {
796
+ .ant-modal-header {
797
+ padding-bottom: 0 !important;
798
+ }
799
+ .ant-modal-body {
800
+ > :nth-child(1) {
801
+ color: #021429;
802
+ }
803
+ }
804
+ .ant-modal-close-x {
805
+ display: none;
806
+ }
807
+ .ant-modal-title {
808
+ position: relative;
809
+ .tishi1 {
810
+ margin-right: 8px;
811
+ color: #fd9f41;
812
+ }
813
+ .qingchu {
814
+ position: absolute;
815
+ top: 0;
816
+ right: 0;
817
+ }
818
+ }
819
+ }
820
+ }
821
+ #select-attributes-select {
822
+ .ant-select-dropdown {
823
+ display: none !important;
824
+ }
825
+ }
826
+
827
+ .not-operable {
828
+ color: #ccd0d4;
829
+ cursor: not-allowed !important;
830
+ user-select: none;
831
+ }
832
+
833
+ // dm项目中modal-confirm公用的样式
834
+ .dm-modal-confirm {
835
+ .ant-modal-confirm-btns {
836
+ .ant-btn-primary {
837
+ margin-left: 16px !important;
838
+ background: #165dff;
839
+ }
35
840
  }
36
841
  }