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

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