@zgfe/modules-dm 1.0.57-zhongyuan.6 → 1.0.57-zhongyuan.61

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 (31) hide show
  1. package/es/constants/api.d.ts +9 -1
  2. package/es/constants/api.js +10 -2
  3. package/es/modules/CutsModal.d.ts +8 -0
  4. package/es/modules/clearRule/addRule.d.ts +1 -0
  5. package/es/modules/clearRule/addRule.js +318 -180
  6. package/es/modules/clearRule/css/index.css +265 -256
  7. package/es/modules/clearRule/css/index.less +10 -1
  8. package/es/modules/clearRule/importMetaDialog/styles/index.less +91 -91
  9. package/es/modules/clearRule/index.js +175 -89
  10. package/es/modules/dataManage/collectionAttributeList.d.ts +2 -0
  11. package/es/modules/dataManage/collectionAttributeList.js +48 -24
  12. package/es/modules/dataManage/collectionEventList.js +6 -3
  13. package/es/modules/dataManage/components/createMetaDrawer.js +85 -4
  14. package/es/modules/dataManage/components/eventFilter/index.js +7 -5
  15. package/es/modules/dataManage/components/eventGroupingDrawer.js +1 -4
  16. package/es/modules/dataManage/components/panelList.js +1 -1
  17. package/es/modules/dataManage/components/tablePlus.d.ts +8 -0
  18. package/es/modules/dataManage/components/tablePlus.js +296 -145
  19. package/es/modules/dataManage/styles/index.less +1210 -1205
  20. package/es/modules/dataManage/types.d.ts +4 -0
  21. package/es/modules/dataMap/component/drawerAdd.js +3 -2
  22. package/es/modules/dataMap/component/leftTree.js +1 -1
  23. package/es/modules/dataPlan/addPlan.js +5 -4
  24. package/es/modules/formulateRule/addFormulate.d.ts +1 -0
  25. package/es/modules/formulateRule/addFormulate.js +141 -36
  26. package/es/modules/formulateRule/addRule.d.ts +2 -0
  27. package/es/modules/formulateRule/addRule.js +201 -27
  28. package/es/modules/formulateRule/index.js +108 -64
  29. package/es/utils/index.d.ts +2 -0
  30. package/es/utils/index.js +9 -0
  31. package/package.json +64 -64
@@ -1,1205 +1,1210 @@
1
- @import '~@zgfe/business-lib/es/assets/styles/inner.less';
2
- .data-manage {
3
- position: relative;
4
- height: calc(100vh - 48px);
5
- // padding: 24px;
6
- background: #fafafb;
7
- border-radius: 8px;
8
- .ant-tabs-tab + .ant-tabs-tab {
9
- margin: 0 0 0 24px;
10
- }
11
- > :nth-child(1) {
12
- > :nth-child(1) {
13
- margin-bottom: 0;
14
- padding-left: 24px;
15
- }
16
- > :nth-child(2) {
17
- margin: 16px !important;
18
- padding: 24px;
19
- }
20
- }
21
- .ant-select {
22
- border-radius: 4px !important;
23
- }
24
- &-text {
25
- overflow: hidden;
26
- white-space: nowrap;
27
- text-overflow: ellipsis;
28
- }
29
- .loading {
30
- position: fixed;
31
- top: 70%;
32
- left: 55%;
33
- }
34
- .ant-tabs-tab + .ant-tabs-tab {
35
- margin: 0 0 0 24px;
36
- }
37
- .creact-group {
38
- .ant-modal-body {
39
- padding: 3px 20px 0px 20px !important;
40
- }
41
- }
42
- .ant-radio-group {
43
- > :nth-child(1) {
44
- border-radius: 4px 0px 0px 4px;
45
- }
46
- > :last-child {
47
- border-radius: 0px 4px 4px 0px;
48
- }
49
- }
50
- .ant-radio-button-wrapper-checked {
51
- background: #e8efff;
52
- }
53
- }
54
-
55
- .attr-list,
56
- .virtual-event-list,
57
- .event-list {
58
- position: relative;
59
- &-back {
60
- margin-bottom: 10px;
61
- cursor: pointer;
62
- user-select: none;
63
- }
64
- .hidden-box {
65
- display: none;
66
- }
67
- .error-row {
68
- color: #fb5547;
69
- }
70
- .fuzhi {
71
- display: none;
72
- margin-left: 10px;
73
- color: #666;
74
- font-size: 16px !important;
75
- &:hover {
76
- color: @primary-color;
77
- }
78
- }
79
- &-pop-btn {
80
- display: inline-flex;
81
- gap: 8px;
82
- align-items: center;
83
- height: 32px;
84
- padding: 0 16px;
85
- background: var(--io-n-05, #f2f3f4);
86
- border-radius: 4px;
87
- cursor: pointer;
88
- }
89
- // 按钮下拉列表
90
- &-downItems {
91
- color: #021429;
92
- font-size: 14px;
93
- span {
94
- margin: 0px 8px 0px 0px;
95
- }
96
- }
97
- }
98
-
99
- .virtual-event-list,
100
- .event-list {
101
- &-top-box {
102
- position: relative;
103
- display: flex;
104
- margin-bottom: 17px;
105
- .top-select {
106
- width: 160px;
107
- margin-right: 12px;
108
- }
109
- .top-input {
110
- width: 244px;
111
- margin-right: 12px;
112
- .ant-input-prefix {
113
- margin-right: 8px;
114
- }
115
- }
116
- .top-total {
117
- line-height: 32px;
118
- span {
119
- margin: 0 4px;
120
- color: @primary-color;
121
- font-weight: bold;
122
- }
123
- }
124
- .ant-btn-default {
125
- background: #fff;
126
- }
127
- .top-button {
128
- position: absolute;
129
- top: 0;
130
- right: 0;
131
- display: flex;
132
- gap: 16px;
133
- line-height: 100%;
134
- .button:not(.disabled):not(.ant-btn-primary) {
135
- color: #1454e5;
136
- border: 1px solid #1454e5;
137
- }
138
- }
139
- }
140
- .table-plus {
141
- &-table {
142
- .ant-table {
143
- border-radius: 8px !important;
144
- .ant-table-thead {
145
- > tr > th {
146
- height: 50px;
147
- padding: 0 16px;
148
- }
149
- }
150
- .ant-table-tbody {
151
- > tr > td {
152
- height: 50px;
153
- padding: 0 16px;
154
- }
155
- }
156
- table {
157
- border-collapse: collapse;
158
- }
159
- }
160
- .ant-table-cell-row-hover {
161
- .bsicon {
162
- display: inline-block !important;
163
- }
164
- }
165
- .alias_name_popover {
166
- width: 200px;
167
- word-break: break-all;
168
- background: red;
169
- }
170
- .ant-input:focus,
171
- .ant-input-focused {
172
- background-color: #fff !important;
173
- border-bottom: 1px solid @primary-color;
174
- border-radius: 0 !important;
175
- box-shadow: none !important;
176
- }
177
- .group-row {
178
- // border-top: 12px solid #f5f5f5;
179
- > :nth-child(1) {
180
- display: flex !important;
181
- align-items: center !important;
182
- }
183
- .ant-table-cell-fix-left {
184
- left: 0px;
185
- display: block;
186
- width: 500px;
187
- background: #fff;
188
- }
189
- .ant-table-cell-fix-left-first::after,
190
- .ant-table-cell-fix-left-last::after {
191
- box-shadow: none;
192
- }
193
- td {
194
- padding: 6px 16px;
195
- }
196
- :last-child {
197
- padding: 0;
198
- }
199
- td:not(:first-child, :last-child) > * {
200
- display: none;
201
- }
202
- }
203
- .group-box {
204
- display: flex;
205
- width: 800px;
206
- line-height: 30px;
207
- .ant-input {
208
- width: 150px;
209
- border: none;
210
- }
211
- .bsicon {
212
- margin-right: 4px;
213
- font-size: 18px !important;
214
- }
215
- .group-handle {
216
- margin-left: 30px;
217
- cursor: pointer;
218
- user-select: none;
219
- }
220
- }
221
- .edit-del {
222
- .bsicon {
223
- margin-right: 15px;
224
- font-size: 16px !important;
225
- cursor: pointer;
226
- }
227
- :first-child:hover {
228
- color: @primary-color;
229
- }
230
- :last-child:hover {
231
- color: red;
232
- }
233
- }
234
- .set-box {
235
- display: flex;
236
- color: #165dff;
237
- cursor: pointer;
238
- > :nth-child(1) {
239
- margin-right: 16px;
240
- }
241
- }
242
- .select-style {
243
- width: 126px;
244
- .ant-select-selection-item {
245
- color: #021429;
246
- font-weight: 500;
247
- }
248
- }
249
- .event_attrs {
250
- display: flex;
251
- justify-content: flex-start;
252
- text-align: center;
253
- .bsicon {
254
- margin-left: 12px;
255
- font-size: 16px !important;
256
- &:hover {
257
- color: @primary-color;
258
- }
259
- }
260
- &_text {
261
- width: 86%;
262
- overflow: hidden;
263
- text-align: left;
264
- text-overflow: ellipsis;
265
- }
266
- }
267
- .event_name {
268
- display: flex;
269
- .event_name-text {
270
- display: -webkit-box;
271
- // max-width: 120px;
272
- overflow: hidden;
273
- cursor: pointer;
274
- -webkit-box-orient: vertical;
275
- -webkit-line-clamp: 1;
276
- }
277
- .expired {
278
- display: flex;
279
- gap: 4px;
280
- align-items: flex-start;
281
- margin-left: 8px;
282
- padding: 2px 8px;
283
- color: #fd9f41;
284
- font-size: 14px;
285
- background: #ffecd9;
286
- border-radius: 2px;
287
- }
288
- .copy-text {
289
- display: none;
290
- margin-left: 10px;
291
- font-size: 16px !important;
292
- cursor: pointer;
293
- }
294
- .copy-text:hover {
295
- color: @primary-color;
296
- }
297
- .collect-icon,
298
- .collect-icon-active {
299
- margin: 0 4px;
300
- font-size: 16px !important;
301
- cursor: pointer;
302
- }
303
- .collect-icon {
304
- color: #999;
305
- opacity: 0;
306
- }
307
- .collect-icon:hover {
308
- color: #f2d074;
309
- }
310
- .collect-icon-active {
311
- color: #fd9f41;
312
- }
313
- .ant-checkbox-wrapper {
314
- align-items: center;
315
- margin-top: -6px;
316
- }
317
- .ant-radio-wrapper {
318
- align-items: center;
319
- margin-top: -6px;
320
- }
321
- }
322
- .alias_name {
323
- display: flex;
324
- border: none;
325
- cursor: pointer;
326
- .alias_name_text {
327
- display: -webkit-box;
328
- max-width: 167px;
329
- overflow: hidden;
330
- cursor: pointer;
331
- -webkit-box-orient: vertical;
332
- -webkit-line-clamp: 1;
333
- }
334
- .edit-alias-name {
335
- display: none;
336
- margin-left: 10px;
337
- font-size: 16px !important;
338
- }
339
- .edit-alias-name:hover {
340
- color: @primary-color;
341
- }
342
- }
343
- .bind-event,
344
- .description {
345
- display: -webkit-box;
346
- max-width: 180px;
347
- overflow: hidden;
348
- cursor: pointer;
349
- -webkit-box-orient: vertical;
350
- -webkit-line-clamp: 1;
351
- }
352
- .ant-table-row:hover {
353
- .collect-icon {
354
- opacity: 1;
355
- }
356
- .copy-text {
357
- display: block;
358
- }
359
- .edit-alias-name {
360
- display: block;
361
- }
362
- }
363
- .set {
364
- color: @primary-color;
365
- // text-align: center;
366
- cursor: pointer;
367
- user-select: none;
368
- }
369
- .set-error {
370
- color: #86909c;
371
- }
372
- }
373
- }
374
- }
375
-
376
- .attr-list {
377
- &-top-box {
378
- position: relative;
379
- display: flex;
380
- margin-bottom: 17px;
381
- .top-select {
382
- width: 160px;
383
- margin-right: 12px;
384
- }
385
- .top-input {
386
- width: 244px;
387
- margin-right: 12px;
388
- .ant-input-prefix {
389
- margin-right: 8px;
390
- }
391
- }
392
- .top-total {
393
- line-height: 32px;
394
- span {
395
- margin: 0 4px;
396
- color: @primary-color;
397
- font-weight: bold;
398
- }
399
- }
400
- .ant-btn-default {
401
- background: #fff;
402
- }
403
- .top-button {
404
- position: absolute;
405
- top: 0;
406
- right: 0;
407
- display: flex;
408
- gap: 16px;
409
- line-height: 100%;
410
- .button:not(.disabled):not(.ant-btn-primary) {
411
- color: #1454e5;
412
- border: 1px solid #1454e5;
413
- }
414
- }
415
- }
416
- .ant-table {
417
- overflow: hidden;
418
- border: 1px solid #ecedf0;
419
- border-radius: 8px;
420
- .ant-table-thead {
421
- > tr > th {
422
- height: 50px;
423
- padding: 0 16px;
424
- }
425
- }
426
- .ant-table-tbody {
427
- > tr > td {
428
- height: 50px;
429
- padding: 0 16px;
430
- }
431
- }
432
- }
433
- .attr-name {
434
- display: flex;
435
- .attr-name-text {
436
- display: -webkit-box;
437
- width: 120px;
438
- overflow: hidden;
439
- -webkit-box-orient: vertical;
440
- -webkit-line-clamp: 1;
441
- }
442
- .tishiicon {
443
- margin-right: 6px;
444
- }
445
- &:hover {
446
- .fuzhi {
447
- display: inline-block;
448
- cursor: pointer;
449
- }
450
- }
451
- .ant-checkbox-wrapper {
452
- align-items: center;
453
- margin-top: -6px;
454
- margin-right: 30px;
455
- }
456
- }
457
- .alias_name {
458
- border: none;
459
- cursor: pointer;
460
- }
461
- .ant-input:focus,
462
- .ant-input-focused {
463
- background-color: #fff !important;
464
- border-bottom: 1px solid @primary-color;
465
- border-radius: 0 !important;
466
- box-shadow: none !important;
467
- }
468
- .attr_alias_name {
469
- cursor: pointer;
470
- user-select: none;
471
- &:not(.disabled):hover {
472
- color: @primary-color;
473
- }
474
- }
475
- .button-box {
476
- display: flex;
477
- margin-top: -24px;
478
- margin-bottom: 14px;
479
- .ant-btn {
480
- margin-right: 20px;
481
- }
482
- .bsicon {
483
- margin-right: 6px;
484
- }
485
- }
486
- .clearData {
487
- position: absolute;
488
- top: 75px;
489
- right: 26px;
490
- text-align: right;
491
- cursor: pointer;
492
- user-select: none;
493
- }
494
- }
495
-
496
- .virtual-event-list {
497
- .table-plus {
498
- &-table {
499
- .event_name-text:hover {
500
- color: #165dff;
501
- }
502
- }
503
- }
504
- }
505
-
506
- .event-list-drawer {
507
- .ant-select {
508
- border-radius: 4px !important;
509
- }
510
- .ant-drawer-header-title {
511
- height: 20px;
512
- .ant-drawer-close {
513
- position: absolute;
514
- right: 6px;
515
- }
516
- }
517
- .ant-drawer-mask {
518
- background: rgba(0, 0, 0, 0.8);
519
- }
520
- }
521
-
522
- .create-virtual-drawer {
523
- .ant-select {
524
- border-radius: 4px !important;
525
- }
526
- #basic {
527
- padding-bottom: 100px;
528
- .ant-input {
529
- border: none;
530
- }
531
- }
532
- &-desc {
533
- .ant-form-item-control {
534
- max-width: 100%;
535
- }
536
- }
537
- &-add {
538
- color: #165dff;
539
- cursor: pointer;
540
- &-icon {
541
- margin-right: 8px;
542
- font-weight: 900;
543
- font-size: 18px !important;
544
- vertical-align: -2px;
545
- }
546
- }
547
- &-see-box {
548
- > div {
549
- display: flex;
550
- gap: 8px;
551
- margin-bottom: 16px;
552
- color: #021429;
553
- span {
554
- width: 84px;
555
- min-width: 84px;
556
- color: #5f6085;
557
- text-align: right;
558
- }
559
- }
560
- }
561
- .ant-drawer-close {
562
- display: none;
563
- }
564
- .qingchu {
565
- font-size: 20px !important;
566
- cursor: pointer;
567
- }
568
- &-eventDataBox {
569
- margin-top: 24px;
570
- padding-bottom: 24px;
571
- > :nth-child(1) {
572
- color: #5f6085;
573
- }
574
- > :nth-child(1)::before {
575
- display: inline-block;
576
- margin-right: 4px;
577
- color: #ff4d4f;
578
- font-size: 14px;
579
- font-family: SimSun, sans-serif;
580
- line-height: 1;
581
- content: '*';
582
- }
583
- > :nth-child(2) {
584
- margin-top: 8px;
585
- color: #67727f;
586
- font-size: 12px;
587
- }
588
- }
589
- &-eventDataBox.see {
590
- > :nth-child(1) {
591
- color: #5f6085;
592
- }
593
- > :nth-child(2) {
594
- color: #67727f;
595
- }
596
- }
597
- &-formList {
598
- margin-top: 16px;
599
- .ant-form-item {
600
- width: 100%;
601
- max-width: 100%;
602
- margin-bottom: 16px !important;
603
- .ant-col {
604
- width: 100%;
605
- max-width: 100%;
606
- }
607
- }
608
- }
609
- &-formSubmit {
610
- position: absolute;
611
- right: 0;
612
- bottom: 0;
613
- display: flex;
614
- gap: 16px;
615
- justify-content: end;
616
- width: 100%;
617
- padding: 16px;
618
- padding-right: 24px;
619
- background: #fff;
620
- border-top: 1px solid #f2f3f4;
621
- }
622
- .ant-drawer-content,
623
- .ant-drawer-wrapper-body {
624
- overflow: hidden !important;
625
- }
626
- }
627
-
628
- .event-grouping-drawer {
629
- &-box {
630
- &-header {
631
- display: flex;
632
- align-items: center;
633
- justify-content: space-between;
634
- margin-top: 16px;
635
- margin-bottom: 12px;
636
- > div {
637
- display: flex;
638
- gap: 12px;
639
- align-items: center;
640
- justify-content: start;
641
- }
642
- .operate-left {
643
- display: flex;
644
- gap: 12px;
645
- align-items: center;
646
- justify-content: start;
647
- .fangxiangshang {
648
- transform: rotateZ(90deg);
649
- }
650
- > :nth-child(1) {
651
- display: flex;
652
- gap: 8px;
653
- align-items: center;
654
- justify-content: start;
655
- > :nth-child(1) {
656
- color: #9aa1a9;
657
- }
658
- > :nth-child(2) {
659
- font-weight: 500;
660
- }
661
- .zhongmingming {
662
- cursor: pointer;
663
- }
664
- .zhongmingming:hover {
665
- color: #165dff;
666
- }
667
- }
668
- > :last-child {
669
- color: #9aa1a9;
670
- }
671
- }
672
- .operate-right {
673
- > :not(.ant-checkbox-wrapper):not(:last-child) {
674
- padding: 0 8px;
675
- cursor: pointer;
676
- }
677
- .tuozhuai1 {
678
- font-size: 18px !important;
679
- cursor: move;
680
- }
681
- .handle:hover {
682
- color: #165dff;
683
- }
684
- .handle-delete:hover {
685
- color: #fb5547;
686
- }
687
- }
688
- }
689
- &-content {
690
- display: flex;
691
- flex-wrap: wrap;
692
- > div {
693
- display: flex;
694
- flex-wrap: wrap;
695
- gap: 12px;
696
- justify-content: flex-start;
697
- width: 100%;
698
- .checkbox-item {
699
- display: flex;
700
- flex-shrink: 0;
701
- align-items: center;
702
- width: calc(25% - 9px);
703
- height: 40px;
704
- margin: 0;
705
- padding: 9px 0 9px 16px;
706
- background: #fafafb;
707
- border-radius: 4px;
708
- .ant-checkbox {
709
- margin-top: -6px;
710
- }
711
- .ant-checkbox + span {
712
- display: -webkit-box;
713
- max-width: 100%;
714
- overflow: hidden;
715
- cursor: pointer;
716
- user-select: none;
717
- -webkit-box-orient: vertical;
718
- -webkit-line-clamp: 1;
719
- }
720
- }
721
- }
722
- .event-hidden {
723
- color: #ccd0d4;
724
- }
725
- }
726
- &-content.close {
727
- display: none;
728
- }
729
- }
730
- &-top-box {
731
- display: flex;
732
- align-items: center;
733
- justify-content: space-between;
734
- margin-top: -8px;
735
- .ant-btn {
736
- height: 32px;
737
- }
738
- .ant-input-affix-wrapper {
739
- width: 374px;
740
- border: none;
741
- }
742
- .ant-input-prefix {
743
- margin-right: 10px;
744
- }
745
- }
746
- .ant-drawer-content-wrapper {
747
- overflow-x: hidden;
748
- }
749
- .ant-drawer-content,
750
- .ant-drawer-wrapper-body {
751
- overflow: hidden !important;
752
- }
753
- .ant-drawer-title {
754
- span {
755
- margin-left: 8px;
756
- color: #9aa1a9;
757
- font-size: 12px;
758
- }
759
- }
760
- .ant-drawer-close {
761
- display: none;
762
- }
763
- .ant-drawer-extra {
764
- .qingchu {
765
- font-size: 20px !important;
766
- cursor: pointer;
767
- }
768
- }
769
- }
770
-
771
- .event-grouping-drawer-sortablelist {
772
- z-index: 99999;
773
- }
774
-
775
- .group-delete-modal {
776
- .ant-modal-body {
777
- padding: 24px;
778
- }
779
- .ant-modal-confirm-body {
780
- .tishi1 {
781
- margin-right: 2px;
782
- color: #fd9f41;
783
- font-size: 24px !important;
784
- }
785
- }
786
- .ant-modal-confirm-title {
787
- display: inline !important;
788
- color: #021429 !important;
789
- font-weight: 500;
790
- font-size: 24px !important;
791
- }
792
- .ant-modal-confirm-content {
793
- margin-top: 20px !important;
794
- }
795
- }
796
-
797
- .move-popover {
798
- .ant-popover-inner-content {
799
- padding: 22px 16px 30px 16px;
800
- .move-content {
801
- > div {
802
- margin-bottom: 8px;
803
- }
804
- > :last-child {
805
- display: flex;
806
- gap: 8px;
807
- align-items: center;
808
- justify-content: end;
809
- margin-bottom: 0;
810
- }
811
- }
812
- }
813
- }
814
- .move-popover.hidden {
815
- display: none;
816
- }
817
-
818
- .ant-input-disabled,
819
- .disabled {
820
- cursor: not-allowed !important;
821
- }
822
-
823
- .select-attributes {
824
- &-box {
825
- display: flex;
826
- width: 616px;
827
- height: 380px;
828
- background: #fff;
829
- border-radius: 10px;
830
- box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
831
- &-left {
832
- display: flex;
833
- flex-direction: column;
834
- width: 205px;
835
- height: 380px;
836
- padding: 8px;
837
- overflow-y: auto;
838
- box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
839
- > div {
840
- display: flex;
841
- justify-content: space-between;
842
- padding: 6px 12px;
843
- }
844
- .active {
845
- color: #fff;
846
- background: #165dff;
847
- border-radius: 4px;
848
- > :nth-child(2) {
849
- padding: 0px 4px;
850
- border: 1px solid #fff;
851
- border-radius: 10px;
852
- }
853
- }
854
- }
855
- &-right {
856
- width: 100%;
857
- height: 380px;
858
- padding: 8px;
859
- > :nth-child(2) {
860
- display: flex;
861
- flex-direction: column;
862
- gap: 8px;
863
- align-items: flex-start;
864
- width: 100%;
865
- height: 320px;
866
- margin-top: 8px;
867
- overflow-y: auto;
868
- > div {
869
- display: flex;
870
- flex-shrink: 0;
871
- gap: 10px;
872
- align-items: center;
873
- align-self: stretch;
874
- height: 32px;
875
- padding: 0px 16px;
876
- }
877
- .active {
878
- background: #e8efff;
879
- }
880
- }
881
- }
882
- }
883
- &-select {
884
- display: flex;
885
- gap: 10px;
886
- align-items: center;
887
- justify-content: flex-start;
888
- margin-top: 16px;
889
- > :nth-child(1) {
890
- width: 32px;
891
- color: #5f6085;
892
- }
893
- }
894
- &-modal-box {
895
- .ant-modal-header {
896
- padding-bottom: 0 !important;
897
- }
898
- .ant-modal-body {
899
- > :nth-child(1) {
900
- color: #021429;
901
- }
902
- }
903
- .ant-modal-close-x {
904
- display: none;
905
- }
906
- .ant-modal-title {
907
- position: relative;
908
- .tishi1 {
909
- margin-right: 8px;
910
- color: #fd9f41;
911
- }
912
- .qingchu {
913
- position: absolute;
914
- top: 0;
915
- right: 0;
916
- }
917
- }
918
- }
919
- }
920
- #select-attributes-select {
921
- .ant-select-dropdown {
922
- display: none !important;
923
- }
924
- }
925
-
926
- .not-operable {
927
- color: #ccd0d4;
928
- cursor: not-allowed !important;
929
- user-select: none;
930
- }
931
-
932
- // dm项目中modal-confirm公用的样式
933
- .dm-modal-confirm {
934
- .ant-modal-confirm-btns {
935
- .ant-btn-primary {
936
- margin-left: 16px !important;
937
- background: #165dff;
938
- }
939
- }
940
- }
941
-
942
- // dm项目中modal-confirm公用的样式
943
- .dm-modal-del-confirm {
944
- &-title {
945
- display: flex;
946
- gap: 8px;
947
- font-size: 24px;
948
- .tishi1 {
949
- color: #fd9f41;
950
- }
951
- }
952
- &-content {
953
- display: flex;
954
- flex: 1 0 0;
955
- flex-direction: column;
956
- gap: 4px;
957
- align-items: flex-start;
958
- align-self: stretch;
959
- height: 102px;
960
- margin-top: 16px;
961
- padding: 8px 0 8px 32px;
962
- overflow-y: auto;
963
- color: #354354;
964
- background: var(--io-n-02, #fafafb);
965
- border-radius: 8px;
966
- }
967
- .ant-modal-confirm-body .ant-modal-confirm-content {
968
- margin-top: 16px;
969
- }
970
- .ant-modal-confirm-btns {
971
- .ant-btn-primary {
972
- margin-left: 16px !important;
973
- font-size: 14px;
974
- background: #165dff;
975
- }
976
- }
977
- .ant-modal-confirm .ant-modal-body {
978
- padding: 24px !important;
979
- }
980
- }
981
-
982
- .create-meta-drawer {
983
- .set:hover {
984
- color: #ff4d4f;
985
- }
986
- &-content {
987
- display: flex;
988
- flex: 1;
989
- flex-direction: column;
990
- gap: 24px;
991
- &-select {
992
- display: flex;
993
- align-items: center;
994
- justify-content: right;
995
- margin-right: -12px;
996
- margin-left: -16px;
997
- }
998
- .ant-table-thead > tr > th {
999
- color: var(--io-N-, #021429);
1000
- font-weight: 400;
1001
- font-size: 14px;
1002
- font-family: 'PingFang SC';
1003
- font-style: normal;
1004
- line-height: normal;
1005
- }
1006
- }
1007
- &-table {
1008
- margin: 20px 0px;
1009
- overflow: hidden;
1010
- border-radius: 8px;
1011
- }
1012
-
1013
- &-info {
1014
- display: flex;
1015
- flex-direction: row;
1016
- gap: 12px;
1017
- align-items: center;
1018
- height: 32px;
1019
- &-title {
1020
- display: flex;
1021
- flex-direction: row;
1022
- gap: 4px;
1023
- justify-content: flex-end;
1024
- width: 68px;
1025
- color: var(--io-N6-, #67727f);
1026
- font-weight: 400;
1027
- font-size: 14px;
1028
- font-family: 'PingFang SC';
1029
- font-style: normal;
1030
- line-height: 32px;
1031
- line-height: normal;
1032
- text-align: right;
1033
- }
1034
- &-input {
1035
- position: relative;
1036
- flex: 1;
1037
- .button:not(.disabled):not(.ant-btn-primary) {
1038
- float: right;
1039
- padding: 0 16px;
1040
- color: #1454e5;
1041
- border: 1px solid #1454e5;
1042
- }
1043
- &-num {
1044
- position: absolute;
1045
- top: 6px;
1046
- right: 12px;
1047
- color: var(--io-N4-, #9aa1a9);
1048
- font-weight: 400;
1049
- font-size: 14px;
1050
- font-family: 'PingFang SC';
1051
- font-style: normal;
1052
- line-height: 20px;
1053
- }
1054
- }
1055
- }
1056
-
1057
- &-footer {
1058
- display: flex;
1059
- gap: 16px;
1060
- align-items: center;
1061
- justify-content: flex-end;
1062
- margin: 0 -24px -24px;
1063
- padding: 18px 24px 18px 0px;
1064
- background: #fff;
1065
- border-top: 1px solid var(--io-N1-, #e6e7ea);
1066
- }
1067
- .ant-drawer-content-wrapper {
1068
- overflow-x: hidden;
1069
- }
1070
- .ant-drawer-content,
1071
- .ant-drawer-wrapper-body {
1072
- overflow: hidden !important;
1073
- }
1074
- .ant-drawer-body {
1075
- display: flex;
1076
- flex-direction: column;
1077
- }
1078
- .ant-drawer-title {
1079
- span {
1080
- margin-left: 8px;
1081
- color: #9aa1a9;
1082
- font-size: 12px;
1083
- }
1084
- }
1085
- .ant-drawer-close {
1086
- display: none;
1087
- }
1088
- .ant-drawer-extra {
1089
- .qingchu {
1090
- font-size: 20px !important;
1091
- cursor: pointer;
1092
- }
1093
- }
1094
- }
1095
-
1096
- .create-attr-drawer {
1097
- &-content {
1098
- display: flex;
1099
- flex: 1;
1100
- flex-direction: column;
1101
- gap: 24px;
1102
- &-select {
1103
- display: flex;
1104
- align-items: center;
1105
- justify-content: right;
1106
- margin-right: -12px;
1107
- margin-left: -16px;
1108
- }
1109
- .ant-table-thead > tr > th {
1110
- color: var(--io-N-, #021429);
1111
- font-weight: 400;
1112
- font-size: 14px;
1113
- font-family: 'PingFang SC';
1114
- font-style: normal;
1115
- line-height: normal;
1116
- }
1117
- }
1118
-
1119
- &-info {
1120
- display: flex;
1121
- flex-direction: row;
1122
- gap: 12px;
1123
- align-items: center;
1124
- height: 32px;
1125
- &-title {
1126
- display: flex;
1127
- flex-direction: row;
1128
- gap: 4px;
1129
- justify-content: flex-end;
1130
- width: 68px;
1131
- color: var(--io-N6-, #67727f);
1132
- font-weight: 400;
1133
- font-size: 14px;
1134
- font-family: 'PingFang SC';
1135
- font-style: normal;
1136
- line-height: 32px;
1137
- line-height: normal;
1138
- text-align: right;
1139
- }
1140
- &-input {
1141
- position: relative;
1142
- flex: 1;
1143
- .button:not(.disabled):not(.ant-btn-primary) {
1144
- float: right;
1145
- padding: 0 16px;
1146
- color: #1454e5;
1147
- border: 1px solid #1454e5;
1148
- }
1149
- &-num {
1150
- position: absolute;
1151
- top: 6px;
1152
- right: 12px;
1153
- color: var(--io-N4-, #9aa1a9);
1154
- font-weight: 400;
1155
- font-size: 14px;
1156
- font-family: 'PingFang SC';
1157
- font-style: normal;
1158
- line-height: 20px;
1159
- }
1160
- }
1161
- }
1162
-
1163
- &-footer {
1164
- display: flex;
1165
- gap: 16px;
1166
- align-items: center;
1167
- justify-content: flex-end;
1168
- margin: 0 -24px -24px;
1169
- padding: 18px 24px 18px 0px;
1170
- background: #fff;
1171
- border-top: 1px solid var(--io-N1-, #e6e7ea);
1172
- }
1173
- .ant-drawer-content-wrapper {
1174
- overflow-x: hidden;
1175
- }
1176
- .ant-drawer-content,
1177
- .ant-drawer-wrapper-body {
1178
- overflow: hidden !important;
1179
- }
1180
- .ant-drawer-body {
1181
- display: flex;
1182
- flex-direction: column;
1183
- }
1184
- .ant-drawer-title {
1185
- span {
1186
- margin-left: 8px;
1187
- color: #9aa1a9;
1188
- font-size: 12px;
1189
- }
1190
- }
1191
- .ant-drawer-close {
1192
- display: none;
1193
- }
1194
- .ant-drawer-extra {
1195
- .qingchu {
1196
- font-size: 20px !important;
1197
- cursor: pointer;
1198
- }
1199
- }
1200
- }
1201
- .button-add {
1202
- position: absolute;
1203
- right: 0;
1204
- bottom: -50px;
1205
- }
1
+ @import '~@zgfe/business-lib/es/assets/styles/inner.less';
2
+ .data-manage {
3
+ position: relative;
4
+ height: calc(100vh - 48px);
5
+ // padding: 24px;
6
+ background: #fafafb;
7
+ border-radius: 8px;
8
+ .ant-tabs-tab + .ant-tabs-tab {
9
+ margin: 0 0 0 24px;
10
+ }
11
+ > :nth-child(1) {
12
+ > :nth-child(1) {
13
+ margin-bottom: 0;
14
+ padding-left: 24px;
15
+ }
16
+ > :nth-child(2) {
17
+ margin: 16px !important;
18
+ padding: 24px;
19
+ }
20
+ }
21
+ .ant-select {
22
+ border-radius: 4px !important;
23
+ }
24
+ &-text {
25
+ overflow: hidden;
26
+ white-space: nowrap;
27
+ text-overflow: ellipsis;
28
+ }
29
+ .loading {
30
+ position: fixed;
31
+ top: 70%;
32
+ left: 55%;
33
+ }
34
+ .ant-tabs-tab + .ant-tabs-tab {
35
+ margin: 0 0 0 24px;
36
+ }
37
+ .creact-group {
38
+ .ant-modal-body {
39
+ padding: 3px 20px 0px 20px !important;
40
+ }
41
+ }
42
+ .ant-radio-group {
43
+ > :nth-child(1) {
44
+ border-radius: 4px 0px 0px 4px;
45
+ }
46
+ > :last-child {
47
+ border-radius: 0px 4px 4px 0px;
48
+ }
49
+ }
50
+ .ant-radio-button-wrapper-checked {
51
+ background: #e8efff;
52
+ }
53
+ }
54
+
55
+ .attr-list,
56
+ .virtual-event-list,
57
+ .event-list {
58
+ position: relative;
59
+ &-back {
60
+ margin-bottom: 10px;
61
+ cursor: pointer;
62
+ user-select: none;
63
+ }
64
+ .hidden-box {
65
+ display: none;
66
+ }
67
+ .error-row {
68
+ color: #fb5547;
69
+ }
70
+ .fuzhi {
71
+ display: none;
72
+ margin-left: 10px;
73
+ color: #666;
74
+ font-size: 16px !important;
75
+ &:hover {
76
+ color: @primary-color;
77
+ }
78
+ }
79
+ &-pop-btn {
80
+ display: inline-flex;
81
+ gap: 8px;
82
+ align-items: center;
83
+ height: 32px;
84
+ padding: 0 16px;
85
+ background: var(--io-n-05, #f2f3f4);
86
+ border-radius: 4px;
87
+ cursor: pointer;
88
+ }
89
+ // 按钮下拉列表
90
+ &-downItems {
91
+ color: #021429;
92
+ font-size: 14px;
93
+ span {
94
+ margin: 0px 8px 0px 0px;
95
+ }
96
+ }
97
+ }
98
+
99
+ .virtual-event-list,
100
+ .event-list {
101
+ &-top-box {
102
+ position: relative;
103
+ display: flex;
104
+ margin-bottom: 17px;
105
+ .top-select {
106
+ width: 160px;
107
+ margin-right: 12px;
108
+ }
109
+ .top-input {
110
+ width: 244px;
111
+ margin-right: 12px;
112
+ .ant-input-prefix {
113
+ margin-right: 8px;
114
+ }
115
+ }
116
+ .top-total {
117
+ line-height: 32px;
118
+ span {
119
+ margin: 0 4px;
120
+ color: @primary-color;
121
+ font-weight: bold;
122
+ }
123
+ }
124
+ .ant-btn-default {
125
+ background: #fff;
126
+ }
127
+ .top-button {
128
+ position: absolute;
129
+ top: 0;
130
+ right: 0;
131
+ display: flex;
132
+ gap: 16px;
133
+ line-height: 100%;
134
+ .button:not(.disabled):not(.ant-btn-primary) {
135
+ color: #1454e5;
136
+ border: 1px solid #1454e5;
137
+ }
138
+ }
139
+ }
140
+ .table-plus {
141
+ &-table {
142
+ .ant-table {
143
+ border-radius: 8px !important;
144
+ .ant-table-thead {
145
+ > tr > th {
146
+ height: 50px;
147
+ padding: 0 16px;
148
+ }
149
+ }
150
+ .ant-table-tbody {
151
+ > tr > td {
152
+ height: 50px;
153
+ padding: 0 16px;
154
+ }
155
+ }
156
+ table {
157
+ border-collapse: collapse;
158
+ }
159
+ }
160
+ .ant-table-cell-row-hover {
161
+ .bsicon {
162
+ display: inline-block !important;
163
+ }
164
+ }
165
+ .alias_name_popover {
166
+ width: 200px;
167
+ word-break: break-all;
168
+ background: red;
169
+ }
170
+ .ant-input:focus,
171
+ .ant-input-focused {
172
+ background-color: #fff !important;
173
+ border-bottom: 1px solid @primary-color;
174
+ border-radius: 0 !important;
175
+ box-shadow: none !important;
176
+ }
177
+ .group-row {
178
+ // border-top: 12px solid #f5f5f5;
179
+ > :nth-child(1) {
180
+ display: flex !important;
181
+ align-items: center !important;
182
+ }
183
+ .ant-table-cell-fix-left {
184
+ left: 0px;
185
+ display: block;
186
+ width: 500px;
187
+ background: #fff;
188
+ }
189
+ .ant-table-cell-fix-left-first::after,
190
+ .ant-table-cell-fix-left-last::after {
191
+ box-shadow: none;
192
+ }
193
+ td {
194
+ padding: 6px 16px;
195
+ }
196
+ :last-child {
197
+ padding: 0;
198
+ }
199
+ td:not(:first-child, :last-child) > * {
200
+ display: none;
201
+ }
202
+ }
203
+ .group-box {
204
+ display: flex;
205
+ width: 800px;
206
+ line-height: 30px;
207
+ .ant-input {
208
+ width: 150px;
209
+ border: none;
210
+ }
211
+ .bsicon {
212
+ margin-right: 4px;
213
+ font-size: 18px !important;
214
+ }
215
+ .group-handle {
216
+ margin-left: 30px;
217
+ cursor: pointer;
218
+ user-select: none;
219
+ }
220
+ }
221
+ .edit-del {
222
+ .bsicon {
223
+ margin-right: 15px;
224
+ font-size: 16px !important;
225
+ cursor: pointer;
226
+ }
227
+ :first-child:hover {
228
+ color: @primary-color;
229
+ }
230
+ :last-child:hover {
231
+ color: red;
232
+ }
233
+ }
234
+ .set-box {
235
+ display: flex;
236
+ color: #165dff;
237
+ cursor: pointer;
238
+ > :nth-child(1) {
239
+ margin-right: 16px;
240
+ }
241
+ }
242
+ .select-style {
243
+ width: 126px;
244
+ .ant-select-selection-item {
245
+ color: #021429;
246
+ font-weight: 500;
247
+ }
248
+ }
249
+ .event_attrs {
250
+ display: flex;
251
+ justify-content: flex-start;
252
+ text-align: center;
253
+ cursor: pointer;
254
+ .bsicon {
255
+ margin-left: 12px;
256
+ font-size: 16px !important;
257
+ &:hover {
258
+ color: @primary-color;
259
+ }
260
+ }
261
+ &_text {
262
+ width: 86%;
263
+ overflow: hidden;
264
+ text-align: left;
265
+ text-overflow: ellipsis;
266
+ }
267
+ }
268
+ .event_name {
269
+ display: flex;
270
+ .event_name-text {
271
+ display: -webkit-box;
272
+ // max-width: 120px;
273
+ overflow: hidden;
274
+ cursor: pointer;
275
+ -webkit-box-orient: vertical;
276
+ -webkit-line-clamp: 1;
277
+ }
278
+ .expired {
279
+ display: flex;
280
+ gap: 4px;
281
+ align-items: flex-start;
282
+ margin-left: 8px;
283
+ padding: 2px 8px;
284
+ color: #fd9f41;
285
+ font-size: 14px;
286
+ background: #ffecd9;
287
+ border-radius: 2px;
288
+ }
289
+ .copy-text {
290
+ display: none;
291
+ margin-left: 10px;
292
+ font-size: 16px !important;
293
+ cursor: pointer;
294
+ }
295
+ .copy-text:hover {
296
+ color: @primary-color;
297
+ }
298
+ .collect-icon,
299
+ .collect-icon-active {
300
+ margin: 0 4px;
301
+ font-size: 16px !important;
302
+ cursor: pointer;
303
+ }
304
+ .collect-icon {
305
+ color: #999;
306
+ opacity: 0;
307
+ }
308
+ .collect-icon:hover {
309
+ color: #f2d074;
310
+ }
311
+ .collect-icon-active {
312
+ color: #fd9f41;
313
+ }
314
+ .ant-checkbox-wrapper {
315
+ align-items: center;
316
+ margin-top: -6px;
317
+ }
318
+ .ant-radio-wrapper {
319
+ align-items: center;
320
+ margin-top: -6px;
321
+ }
322
+ }
323
+ .alias_name {
324
+ display: flex;
325
+ border: none;
326
+ cursor: pointer;
327
+ .alias_name_text {
328
+ display: -webkit-box;
329
+ max-width: 167px;
330
+ overflow: hidden;
331
+ cursor: pointer;
332
+ -webkit-box-orient: vertical;
333
+ -webkit-line-clamp: 1;
334
+ }
335
+ .edit-alias-name {
336
+ display: none;
337
+ margin-left: 10px;
338
+ font-size: 16px !important;
339
+ }
340
+ .edit-alias-name:hover {
341
+ color: @primary-color;
342
+ }
343
+ }
344
+ .bind-event,
345
+ .description {
346
+ display: -webkit-box;
347
+ max-width: 180px;
348
+ overflow: hidden;
349
+ cursor: pointer;
350
+ -webkit-box-orient: vertical;
351
+ -webkit-line-clamp: 1;
352
+ }
353
+ .ant-table-row:hover {
354
+ .collect-icon {
355
+ opacity: 1;
356
+ }
357
+ .copy-text {
358
+ display: block;
359
+ }
360
+ .edit-alias-name {
361
+ display: block;
362
+ }
363
+ }
364
+ .set {
365
+ color: @primary-color;
366
+ // text-align: center;
367
+ cursor: pointer;
368
+ user-select: none;
369
+ }
370
+ .set-error {
371
+ color: #86909c;
372
+ }
373
+ }
374
+ }
375
+ }
376
+
377
+ .attr-list {
378
+ &-top-box {
379
+ position: relative;
380
+ display: flex;
381
+ margin-bottom: 17px;
382
+ .top-select {
383
+ width: 160px;
384
+ margin-right: 12px;
385
+ }
386
+ .top-input {
387
+ width: 244px;
388
+ margin-right: 12px;
389
+ .ant-input-prefix {
390
+ margin-right: 8px;
391
+ }
392
+ }
393
+ .top-total {
394
+ line-height: 32px;
395
+ span {
396
+ margin: 0 4px;
397
+ color: @primary-color;
398
+ font-weight: bold;
399
+ }
400
+ }
401
+ .ant-btn-default {
402
+ background: #fff;
403
+ }
404
+ .top-button {
405
+ position: absolute;
406
+ top: 0;
407
+ right: 0;
408
+ display: flex;
409
+ gap: 16px;
410
+ line-height: 100%;
411
+ .button:not(.disabled):not(.ant-btn-primary) {
412
+ color: #1454e5;
413
+ border: 1px solid #1454e5;
414
+ }
415
+ }
416
+ }
417
+ .ant-table {
418
+ overflow: hidden;
419
+ border: 1px solid #ecedf0;
420
+ border-radius: 8px;
421
+ .ant-table-thead {
422
+ > tr > th {
423
+ height: 50px;
424
+ padding: 0 16px;
425
+ }
426
+ }
427
+ .ant-table-tbody {
428
+ > tr > td {
429
+ height: 50px;
430
+ padding: 0 16px;
431
+ }
432
+ }
433
+ }
434
+ .attr-name {
435
+ display: flex;
436
+ .attr-name-text {
437
+ display: -webkit-box;
438
+ width: 120px;
439
+ overflow: hidden;
440
+ -webkit-box-orient: vertical;
441
+ -webkit-line-clamp: 1;
442
+ }
443
+ .tishiicon {
444
+ margin-right: 6px;
445
+ }
446
+ &:hover {
447
+ .fuzhi {
448
+ display: inline-block;
449
+ cursor: pointer;
450
+ }
451
+ }
452
+ .ant-checkbox-wrapper {
453
+ align-items: center;
454
+ margin-top: -6px;
455
+ margin-right: 30px;
456
+ }
457
+ }
458
+ .alias_name {
459
+ border: none;
460
+ cursor: pointer;
461
+ }
462
+ .ant-input:focus,
463
+ .ant-input-focused {
464
+ background-color: #fff !important;
465
+ border-bottom: 1px solid @primary-color;
466
+ border-radius: 0 !important;
467
+ box-shadow: none !important;
468
+ }
469
+ .attr_alias_name {
470
+ cursor: pointer;
471
+ user-select: none;
472
+ &:not(.disabled):hover {
473
+ color: @primary-color;
474
+ }
475
+ }
476
+ .button-box {
477
+ display: flex;
478
+ margin-top: -24px;
479
+ margin-bottom: 14px;
480
+ .ant-btn {
481
+ margin-right: 20px;
482
+ }
483
+ .bsicon {
484
+ margin-right: 6px;
485
+ }
486
+ }
487
+ .clearData {
488
+ position: absolute;
489
+ top: 75px;
490
+ right: 26px;
491
+ text-align: right;
492
+ cursor: pointer;
493
+ user-select: none;
494
+ }
495
+ }
496
+
497
+ .virtual-event-list {
498
+ .table-plus {
499
+ &-table {
500
+ .event_name-text:hover {
501
+ color: #165dff;
502
+ }
503
+ }
504
+ }
505
+ }
506
+
507
+ .event-list-drawer {
508
+ .ant-select {
509
+ border-radius: 4px !important;
510
+ }
511
+ .ant-drawer-header-title {
512
+ height: 20px;
513
+ .ant-drawer-close {
514
+ position: absolute;
515
+ right: 6px;
516
+ }
517
+ }
518
+ .ant-drawer-mask {
519
+ background: rgba(0, 0, 0, 0.8);
520
+ }
521
+ }
522
+
523
+ .create-virtual-drawer {
524
+ .ant-select {
525
+ border-radius: 4px !important;
526
+ }
527
+ #basic {
528
+ padding-bottom: 100px;
529
+ .ant-input {
530
+ border: none;
531
+ }
532
+ }
533
+ &-desc {
534
+ .ant-form-item-control {
535
+ max-width: 100%;
536
+ }
537
+ }
538
+ &-add {
539
+ color: #165dff;
540
+ cursor: pointer;
541
+ &-icon {
542
+ margin-right: 8px;
543
+ font-weight: 900;
544
+ font-size: 18px !important;
545
+ vertical-align: -2px;
546
+ }
547
+ }
548
+ &-see-box {
549
+ > div {
550
+ display: flex;
551
+ gap: 8px;
552
+ margin-bottom: 16px;
553
+ color: #021429;
554
+ span {
555
+ width: 84px;
556
+ min-width: 84px;
557
+ color: #5f6085;
558
+ text-align: right;
559
+ }
560
+ }
561
+ }
562
+ .ant-drawer-close {
563
+ display: none;
564
+ }
565
+ .qingchu {
566
+ font-size: 20px !important;
567
+ cursor: pointer;
568
+ }
569
+ &-eventDataBox {
570
+ margin-top: 24px;
571
+ padding-bottom: 24px;
572
+ > :nth-child(1) {
573
+ color: #5f6085;
574
+ }
575
+ > :nth-child(1)::before {
576
+ display: inline-block;
577
+ margin-right: 4px;
578
+ color: #ff4d4f;
579
+ font-size: 14px;
580
+ font-family: SimSun, sans-serif;
581
+ line-height: 1;
582
+ content: '*';
583
+ }
584
+ > :nth-child(2) {
585
+ margin-top: 8px;
586
+ color: #67727f;
587
+ font-size: 12px;
588
+ }
589
+ }
590
+ &-eventDataBox.see {
591
+ > :nth-child(1) {
592
+ color: #5f6085;
593
+ }
594
+ > :nth-child(2) {
595
+ color: #67727f;
596
+ }
597
+ }
598
+ &-formList {
599
+ margin-top: 16px;
600
+ .ant-form-item {
601
+ width: 100%;
602
+ max-width: 100%;
603
+ margin-bottom: 16px !important;
604
+ .ant-col {
605
+ width: 100%;
606
+ max-width: 100%;
607
+ }
608
+ }
609
+ }
610
+ &-formSubmit {
611
+ position: absolute;
612
+ right: 0;
613
+ bottom: 0;
614
+ display: flex;
615
+ gap: 16px;
616
+ justify-content: end;
617
+ width: 100%;
618
+ padding: 16px;
619
+ padding-right: 24px;
620
+ background: #fff;
621
+ border-top: 1px solid #f2f3f4;
622
+ }
623
+ .ant-drawer-content,
624
+ .ant-drawer-wrapper-body {
625
+ overflow: hidden !important;
626
+ }
627
+ }
628
+
629
+ .event-grouping-drawer {
630
+ &-box {
631
+ &-header {
632
+ display: flex;
633
+ align-items: center;
634
+ justify-content: space-between;
635
+ margin-top: 16px;
636
+ margin-bottom: 12px;
637
+ > div {
638
+ display: flex;
639
+ gap: 12px;
640
+ align-items: center;
641
+ justify-content: start;
642
+ }
643
+ .operate-left {
644
+ display: flex;
645
+ gap: 12px;
646
+ align-items: center;
647
+ justify-content: start;
648
+ .fangxiangshang {
649
+ transform: rotateZ(90deg);
650
+ }
651
+ > :nth-child(1) {
652
+ display: flex;
653
+ gap: 8px;
654
+ align-items: center;
655
+ justify-content: start;
656
+ > :nth-child(1) {
657
+ color: #9aa1a9;
658
+ }
659
+ > :nth-child(2) {
660
+ font-weight: 500;
661
+ }
662
+ .zhongmingming {
663
+ cursor: pointer;
664
+ }
665
+ .zhongmingming:hover {
666
+ color: #165dff;
667
+ }
668
+ }
669
+ > :last-child {
670
+ color: #9aa1a9;
671
+ }
672
+ }
673
+ .operate-right {
674
+ > :not(.ant-checkbox-wrapper):not(:last-child) {
675
+ padding: 0 8px;
676
+ cursor: pointer;
677
+ }
678
+ .tuozhuai1 {
679
+ font-size: 18px !important;
680
+ cursor: move;
681
+ }
682
+ .handle:hover {
683
+ color: #165dff;
684
+ }
685
+ .handle-delete:hover {
686
+ color: #fb5547;
687
+ }
688
+ }
689
+ }
690
+ &-content {
691
+ display: flex;
692
+ flex-wrap: wrap;
693
+ > div {
694
+ display: flex;
695
+ flex-wrap: wrap;
696
+ gap: 12px;
697
+ justify-content: flex-start;
698
+ width: 100%;
699
+ .checkbox-item {
700
+ display: flex;
701
+ flex-shrink: 0;
702
+ align-items: center;
703
+ width: calc(25% - 9px);
704
+ height: 40px;
705
+ margin: 0;
706
+ padding: 9px 0 9px 16px;
707
+ background: #fafafb;
708
+ border-radius: 4px;
709
+ .ant-checkbox {
710
+ margin-top: -6px;
711
+ }
712
+ .ant-checkbox + span {
713
+ display: -webkit-box;
714
+ max-width: 100%;
715
+ overflow: hidden;
716
+ cursor: pointer;
717
+ user-select: none;
718
+ -webkit-box-orient: vertical;
719
+ -webkit-line-clamp: 1;
720
+ }
721
+ }
722
+ }
723
+ .event-hidden {
724
+ color: #ccd0d4;
725
+ }
726
+ }
727
+ &-content.close {
728
+ display: none;
729
+ }
730
+ }
731
+ &-top-box {
732
+ display: flex;
733
+ align-items: center;
734
+ justify-content: space-between;
735
+ margin-top: -8px;
736
+ .ant-btn {
737
+ height: 32px;
738
+ }
739
+ .ant-input-affix-wrapper {
740
+ width: 374px;
741
+ border: none;
742
+ }
743
+ .ant-input-prefix {
744
+ margin-right: 10px;
745
+ }
746
+ }
747
+ .ant-drawer-content-wrapper {
748
+ overflow-x: hidden;
749
+ }
750
+ .ant-drawer-content,
751
+ .ant-drawer-wrapper-body {
752
+ overflow: hidden !important;
753
+ }
754
+ .ant-drawer-title {
755
+ span {
756
+ margin-left: 8px;
757
+ color: #9aa1a9;
758
+ font-size: 12px;
759
+ }
760
+ }
761
+ .ant-drawer-close {
762
+ display: none;
763
+ }
764
+ .ant-drawer-extra {
765
+ .qingchu {
766
+ font-size: 20px !important;
767
+ cursor: pointer;
768
+ }
769
+ }
770
+ }
771
+
772
+ .event-grouping-drawer-sortablelist {
773
+ z-index: 99999;
774
+ }
775
+
776
+ .group-delete-modal {
777
+ .ant-modal-body {
778
+ padding: 24px;
779
+ }
780
+ .ant-modal-confirm-body {
781
+ .tishi1 {
782
+ margin-right: 2px;
783
+ color: #fd9f41;
784
+ font-size: 24px !important;
785
+ }
786
+ }
787
+ .ant-modal-confirm-title {
788
+ display: inline !important;
789
+ color: #021429 !important;
790
+ font-weight: 500;
791
+ font-size: 24px !important;
792
+ }
793
+ .ant-modal-confirm-content {
794
+ margin-top: 20px !important;
795
+ }
796
+ }
797
+
798
+ .move-popover {
799
+ .ant-popover-inner-content {
800
+ padding: 22px 16px 30px 16px;
801
+ .move-content {
802
+ > div {
803
+ margin-bottom: 8px;
804
+ }
805
+ > :last-child {
806
+ display: flex;
807
+ gap: 8px;
808
+ align-items: center;
809
+ justify-content: end;
810
+ margin-bottom: 0;
811
+ }
812
+ }
813
+ }
814
+ }
815
+ .move-popover.hidden {
816
+ display: none;
817
+ }
818
+
819
+ .ant-input-disabled,
820
+ .disabled {
821
+ cursor: not-allowed !important;
822
+ }
823
+
824
+ .select-attributes {
825
+ &-box {
826
+ display: flex;
827
+ width: 616px;
828
+ height: 380px;
829
+ background: #fff;
830
+ border-radius: 10px;
831
+ box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
832
+ &-left {
833
+ display: flex;
834
+ flex-direction: column;
835
+ width: 205px;
836
+ height: 380px;
837
+ padding: 8px;
838
+ overflow-y: auto;
839
+ box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
840
+ > div {
841
+ display: flex;
842
+ justify-content: space-between;
843
+ padding: 6px 12px;
844
+ }
845
+ .active {
846
+ color: #fff;
847
+ background: #165dff;
848
+ border-radius: 4px;
849
+ > :nth-child(2) {
850
+ padding: 0px 4px;
851
+ border: 1px solid #fff;
852
+ border-radius: 10px;
853
+ }
854
+ }
855
+ }
856
+ &-right {
857
+ width: 100%;
858
+ height: 380px;
859
+ padding: 8px;
860
+ > :nth-child(2) {
861
+ display: flex;
862
+ flex-direction: column;
863
+ gap: 8px;
864
+ align-items: flex-start;
865
+ width: 100%;
866
+ height: 320px;
867
+ margin-top: 8px;
868
+ overflow-y: auto;
869
+ > div {
870
+ display: flex;
871
+ flex-shrink: 0;
872
+ gap: 10px;
873
+ align-items: center;
874
+ align-self: stretch;
875
+ height: 32px;
876
+ padding: 0px 16px;
877
+ }
878
+ .active {
879
+ background: #e8efff;
880
+ }
881
+ }
882
+ }
883
+ }
884
+ &-select {
885
+ display: flex;
886
+ gap: 10px;
887
+ align-items: center;
888
+ justify-content: flex-start;
889
+ margin-top: 16px;
890
+ > :nth-child(1) {
891
+ width: 32px;
892
+ color: #5f6085;
893
+ }
894
+ }
895
+ &-modal-box {
896
+ .ant-modal-header {
897
+ padding-bottom: 0 !important;
898
+ }
899
+ .ant-modal-body {
900
+ > :nth-child(1) {
901
+ color: #021429;
902
+ }
903
+ }
904
+ .ant-modal-close-x {
905
+ display: none;
906
+ }
907
+ .ant-modal-title {
908
+ position: relative;
909
+ .tishi1 {
910
+ margin-right: 8px;
911
+ color: #fd9f41;
912
+ }
913
+ .qingchu {
914
+ position: absolute;
915
+ top: 0;
916
+ right: 0;
917
+ }
918
+ }
919
+ }
920
+ }
921
+ #select-attributes-select {
922
+ .ant-select-dropdown {
923
+ display: none !important;
924
+ }
925
+ }
926
+
927
+ .not-operable {
928
+ color: #ccd0d4;
929
+ cursor: not-allowed !important;
930
+ user-select: none;
931
+ }
932
+
933
+ // dm项目中modal-confirm公用的样式
934
+ .dm-modal-confirm {
935
+ .ant-modal-confirm-btns {
936
+ .ant-btn-primary {
937
+ margin-left: 16px !important;
938
+ background: #165dff;
939
+ }
940
+ }
941
+ }
942
+
943
+ // dm项目中modal-confirm公用的样式
944
+ .dm-modal-del-confirm {
945
+ &-title {
946
+ display: flex;
947
+ gap: 8px;
948
+ font-size: 24px;
949
+ .tishi1 {
950
+ color: #fd9f41;
951
+ }
952
+ }
953
+ &-content {
954
+ display: flex;
955
+ flex: 1 0 0;
956
+ flex-direction: column;
957
+ gap: 4px;
958
+ align-items: flex-start;
959
+ align-self: stretch;
960
+ height: 102px;
961
+ margin-top: 16px;
962
+ padding: 8px 0 8px 32px;
963
+ overflow-y: auto;
964
+ color: #354354;
965
+ background: var(--io-n-02, #fafafb);
966
+ border-radius: 8px;
967
+ }
968
+ .ant-modal-confirm-body .ant-modal-confirm-content {
969
+ margin-top: 16px;
970
+ }
971
+ .ant-modal-confirm-btns {
972
+ .ant-btn-primary {
973
+ margin-left: 16px !important;
974
+ font-size: 14px;
975
+ background: #165dff;
976
+ }
977
+ }
978
+ .ant-modal-confirm .ant-modal-body {
979
+ padding: 24px !important;
980
+ }
981
+ }
982
+
983
+ .create-meta-drawer {
984
+ .set:hover {
985
+ color: #ff4d4f;
986
+ }
987
+ &-content {
988
+ display: flex;
989
+ flex: 1;
990
+ flex-direction: column;
991
+ gap: 24px;
992
+ &-select {
993
+ display: flex;
994
+ align-items: center;
995
+ justify-content: right;
996
+ margin-right: -12px;
997
+ margin-left: -16px;
998
+ }
999
+ .ant-table-thead > tr > th {
1000
+ color: var(--io-N-, #021429);
1001
+ font-weight: 400;
1002
+ font-size: 14px;
1003
+ font-family: 'PingFang SC';
1004
+ font-style: normal;
1005
+ line-height: normal;
1006
+ }
1007
+ }
1008
+ &-table {
1009
+ margin: 20px 0px;
1010
+ overflow: hidden;
1011
+ border-radius: 8px;
1012
+ }
1013
+
1014
+ &-info {
1015
+ display: flex;
1016
+ flex-direction: row;
1017
+ gap: 12px;
1018
+ align-items: center;
1019
+ height: 32px;
1020
+ &-title {
1021
+ display: flex;
1022
+ flex-direction: row;
1023
+ gap: 4px;
1024
+ justify-content: flex-end;
1025
+ width: 68px;
1026
+ color: var(--io-N6-, #67727f);
1027
+ font-weight: 400;
1028
+ font-size: 14px;
1029
+ font-family: 'PingFang SC';
1030
+ font-style: normal;
1031
+ line-height: 32px;
1032
+ line-height: normal;
1033
+ text-align: right;
1034
+ }
1035
+ &-input {
1036
+ position: relative;
1037
+ flex: 1;
1038
+ .button:not(.disabled):not(.ant-btn-primary) {
1039
+ float: right;
1040
+ padding: 0 16px;
1041
+ color: #1454e5;
1042
+ border: 1px solid #1454e5;
1043
+ }
1044
+ &-num {
1045
+ position: absolute;
1046
+ top: 6px;
1047
+ right: 12px;
1048
+ color: var(--io-N4-, #9aa1a9);
1049
+ font-weight: 400;
1050
+ font-size: 14px;
1051
+ font-family: 'PingFang SC';
1052
+ font-style: normal;
1053
+ line-height: 20px;
1054
+ }
1055
+ }
1056
+ }
1057
+
1058
+ &-footer {
1059
+ display: flex;
1060
+ gap: 16px;
1061
+ align-items: center;
1062
+ justify-content: flex-end;
1063
+ margin: 0 -24px -24px;
1064
+ padding: 18px 24px 18px 0px;
1065
+ background: #fff;
1066
+ border-top: 1px solid var(--io-N1-, #e6e7ea);
1067
+ }
1068
+ .ant-drawer-content-wrapper {
1069
+ overflow-x: hidden;
1070
+ }
1071
+ .ant-drawer-content,
1072
+ .ant-drawer-wrapper-body {
1073
+ overflow: hidden !important;
1074
+ }
1075
+ .ant-drawer-body {
1076
+ display: flex;
1077
+ flex-direction: column;
1078
+ }
1079
+ .ant-drawer-title {
1080
+ span {
1081
+ margin-left: 8px;
1082
+ color: #9aa1a9;
1083
+ font-size: 12px;
1084
+ }
1085
+ }
1086
+ .ant-drawer-close {
1087
+ display: none;
1088
+ }
1089
+ .ant-drawer-extra {
1090
+ .qingchu {
1091
+ font-size: 20px !important;
1092
+ cursor: pointer;
1093
+ }
1094
+ }
1095
+ .ant-form-item-control-input-content {
1096
+ display: flex;
1097
+ align-items: center;
1098
+ }
1099
+ }
1100
+
1101
+ .create-attr-drawer {
1102
+ &-content {
1103
+ display: flex;
1104
+ flex: 1;
1105
+ flex-direction: column;
1106
+ gap: 24px;
1107
+ &-select {
1108
+ display: flex;
1109
+ align-items: center;
1110
+ justify-content: right;
1111
+ margin-right: -12px;
1112
+ margin-left: -16px;
1113
+ }
1114
+ .ant-table-thead > tr > th {
1115
+ color: var(--io-N-, #021429);
1116
+ font-weight: 400;
1117
+ font-size: 14px;
1118
+ font-family: 'PingFang SC';
1119
+ font-style: normal;
1120
+ line-height: normal;
1121
+ }
1122
+ }
1123
+
1124
+ &-info {
1125
+ display: flex;
1126
+ flex-direction: row;
1127
+ gap: 12px;
1128
+ align-items: center;
1129
+ height: 32px;
1130
+ &-title {
1131
+ display: flex;
1132
+ flex-direction: row;
1133
+ gap: 4px;
1134
+ justify-content: flex-end;
1135
+ width: 68px;
1136
+ color: var(--io-N6-, #67727f);
1137
+ font-weight: 400;
1138
+ font-size: 14px;
1139
+ font-family: 'PingFang SC';
1140
+ font-style: normal;
1141
+ line-height: 32px;
1142
+ line-height: normal;
1143
+ text-align: right;
1144
+ }
1145
+ &-input {
1146
+ position: relative;
1147
+ flex: 1;
1148
+ .button:not(.disabled):not(.ant-btn-primary) {
1149
+ float: right;
1150
+ padding: 0 16px;
1151
+ color: #1454e5;
1152
+ border: 1px solid #1454e5;
1153
+ }
1154
+ &-num {
1155
+ position: absolute;
1156
+ top: 6px;
1157
+ right: 12px;
1158
+ color: var(--io-N4-, #9aa1a9);
1159
+ font-weight: 400;
1160
+ font-size: 14px;
1161
+ font-family: 'PingFang SC';
1162
+ font-style: normal;
1163
+ line-height: 20px;
1164
+ }
1165
+ }
1166
+ }
1167
+
1168
+ &-footer {
1169
+ display: flex;
1170
+ gap: 16px;
1171
+ align-items: center;
1172
+ justify-content: flex-end;
1173
+ margin: 0 -24px -24px;
1174
+ padding: 18px 24px 18px 0px;
1175
+ background: #fff;
1176
+ border-top: 1px solid var(--io-N1-, #e6e7ea);
1177
+ }
1178
+ .ant-drawer-content-wrapper {
1179
+ overflow-x: hidden;
1180
+ }
1181
+ .ant-drawer-content,
1182
+ .ant-drawer-wrapper-body {
1183
+ overflow: hidden !important;
1184
+ }
1185
+ .ant-drawer-body {
1186
+ display: flex;
1187
+ flex-direction: column;
1188
+ }
1189
+ .ant-drawer-title {
1190
+ span {
1191
+ margin-left: 8px;
1192
+ color: #9aa1a9;
1193
+ font-size: 12px;
1194
+ }
1195
+ }
1196
+ .ant-drawer-close {
1197
+ display: none;
1198
+ }
1199
+ .ant-drawer-extra {
1200
+ .qingchu {
1201
+ font-size: 20px !important;
1202
+ cursor: pointer;
1203
+ }
1204
+ }
1205
+ }
1206
+ .button-add {
1207
+ position: absolute;
1208
+ right: 0;
1209
+ bottom: -50px;
1210
+ }