@baosight/erm 1.5.5 → 1.5.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.esm.css CHANGED
@@ -1,63 +1,142 @@
1
1
  @charset "UTF-8";
2
- .container[data-v-87a0d832] {
3
- width: 100%;
2
+ .baseStyle[data-v-a440e92e] {
3
+ width: 99%;
4
4
  height: 100%;
5
- position: relative;
6
5
  }
7
6
 
8
- .box[data-v-87a0d832] {
7
+ [data-v-a440e92e] .ag-header-group-cell {
8
+ border-right-style: solid;
9
+ border-right-width: 1px;
10
+ border-right-color: #cecece;
9
11
  display: flex;
10
12
  justify-content: center;
11
13
  align-items: center;
12
- height: 100vh;
13
14
  }
14
15
 
15
- .goods-card[data-v-87a0d832] {
16
+ [data-v-a440e92e] .ag-header-cell-label {
17
+ display: flex;
18
+ justify-content: center;
19
+ align-items: center;
20
+ }
21
+
22
+ [data-v-a440e92e] .ag-root-wrapper {
23
+ cursor: default;
24
+ position: relative;
16
25
  display: flex;
17
26
  flex-direction: column;
18
- justify-content: flex-start;
27
+ overflow: hidden;
28
+ white-space: normal;
29
+ border: 1px solid #cecece !important; /* 设置最外边的边框 */
30
+ margin-right: 2px !important;
31
+ margin-left: 2px !important;
32
+ margin-bottom: 60px !important;
19
33
  }
20
34
 
21
- .card-desc[data-v-87a0d832] {
22
- text-align: left;
35
+ [data-v-a440e92e] .ag-header-cell:first-child .ag-header-cell-label {
36
+ display: flex !important;
37
+ justify-content: center !important;
38
+ align-items: center !important;
39
+ text-align: center !important;
23
40
  }
24
41
 
25
- .button-area[data-v-87a0d832] {
26
- display: flex;
27
- justify-content: space-between;
28
- align-items: center;
29
- top: 20px;
30
- margin-top: 5%;
31
- margin-left: 5%;
32
- margin-right: 5%;
33
- margin-bottom: 5%;
34
- position: sticky;
35
- z-index: 1000;
42
+ .ag-theme-alpine[data-v-a440e92e] {
43
+ /* and between columns */
44
+ --ag-cell-horizontal-border: solid #cecece;
45
+ --ag-header-cell-horizontal-border: solid #cecece;
46
+ --ag-header-foreground-color: #3a7af9;
36
47
  }
37
48
 
38
- .button-type[data-v-87a0d832] {
39
- font-size: 14px;
40
- border-radius: 10px;
41
- font-family: "阿里巴巴普惠体Regular";
42
- position: relative;
49
+ [data-v-a440e92e] .ag-header-cell {
50
+ border-right-style: solid;
51
+ border-right-width: 1px;
52
+ border-right-color: #cecece; /* 深灰色底边框 */
43
53
  }
44
54
 
45
- .slot-left[data-v-87a0d832] {
46
- margin-top: 20px;
47
- margin-left: 20px;
48
- width: 100%;
49
- height: 60px;
55
+ /* 如果你想要更具体的样式,比如只针对第一个表头列 */
56
+ .ag-header-cell[data-v-a440e92e]:first-child {
57
+ border-left: none; /* 移除左侧边框,如果需要的话 */
50
58
  }
51
59
 
52
- .slot-right[data-v-87a0d832] {
53
- margin-top: 20px;
54
- width: 100%;
55
- height: 60px;
56
- border-radius: 10px;
57
- color: white;
58
- font-size: 16px;
59
- font-weight: 600;
60
- font-family: "阿里巴巴普惠体Light";
60
+ /* 或者针对最后一列 */
61
+ .ag-header-cell[data-v-a440e92e]:last-child {
62
+ border-right: none; /* 移除右侧边框,如果需要的话 */
63
+ }
64
+
65
+ /* 选中行的样式 */
66
+ [data-v-a440e92e] .ag-row-selected::before {
67
+ background-color: rgba(183, 249, 177, 0.5803921569);
68
+ }
69
+
70
+ /* 选中焦点行的样式 */
71
+ [data-v-a440e92e] .ag-row-hover.ag-row-selected::before {
72
+ background-color: rgba(183, 249, 177, 0.5803921569);
73
+ background-image: none;
74
+ }
75
+
76
+ /* 表头的样式 */
77
+ [data-v-a440e92e] .ag-header {
78
+ background-color: #dbefff;
79
+ text-align: center;
80
+ }
81
+
82
+ [data-v-a440e92e] .ag-checkbox-input-wrapper.ag-disabled {
83
+ opacity: 1;
84
+ }
85
+
86
+ /* 默认行的背景色 */
87
+ [data-v-a440e92e] .ag-row-odd {
88
+ background-color: aliceblue;
89
+ }
90
+
91
+ /* 取消选中行的样式 */
92
+ [data-v-a440e92e] .ag-row-hover:not(.ag-row-selected)::before {
93
+ background-color: #ecf0f1;
94
+ }
95
+
96
+ [data-v-a440e92e] .ag-header-cell-label {
97
+ white-space: pre-line !important; /* 强制允许换行 */
98
+ }
99
+
100
+ /*
101
+
102
+ :deep(.ag-header-cell.ag-header-cell-wrap-text.ag-header-cell-auto-height.ag-focus-managed) {
103
+ padding: 0 4px 0 4px !important;
104
+ }
105
+ :deep(.ag-cell-value.ag-cell-not-inline-editing.ag-cell-normal-height) {
106
+ padding: 0 3px 0 3px !important;
107
+ }
108
+
109
+ :deep(.ag-selection-checkbox) {
110
+ margin: 0 auto!important;
111
+ text-align: center;
112
+
113
+ }
114
+ .centered-checkbox .ag-cell-wrapper {
115
+ padding:0 3px;
116
+ display: flex;
117
+ justify-content: center;
118
+ align-items: center;
119
+ }
120
+
121
+ .centered-header .ag-header-cell-label {
122
+ padding:0 4px;
123
+ display: flex;
124
+ justify-content: center;
125
+ }
126
+ :deep(.ag-input-field-input.ag-checkbox-input){
127
+ text-align: center;
128
+ display: flex;
129
+ justify-content: center;
130
+ }*/
131
+ .loading-overlay[data-v-a440e92e] {
132
+ position: absolute;
133
+ top: 0;
134
+ left: 0;
135
+ right: 0;
136
+ bottom: 0;
137
+ background-color: rgba(255, 255, 255, 0.5);
138
+ display: flex;
139
+ z-index: 1000;
61
140
  }
62
141
 
63
142
  .swiperButton[data-v-35c7b3ce] {
@@ -416,144 +495,65 @@ nav[data-v-35c7b3ce] .jh-button[data-v-35c7b3ce] {
416
495
  color: #fff; /* 勾选后的文字颜色 */
417
496
  }
418
497
 
419
- .baseStyle[data-v-a440e92e] {
420
- width: 99%;
498
+ .container[data-v-87a0d832] {
499
+ width: 100%;
421
500
  height: 100%;
501
+ position: relative;
422
502
  }
423
503
 
424
- [data-v-a440e92e] .ag-header-group-cell {
425
- border-right-style: solid;
426
- border-right-width: 1px;
427
- border-right-color: #cecece;
428
- display: flex;
429
- justify-content: center;
430
- align-items: center;
431
- }
432
-
433
- [data-v-a440e92e] .ag-header-cell-label {
504
+ .box[data-v-87a0d832] {
434
505
  display: flex;
435
506
  justify-content: center;
436
507
  align-items: center;
508
+ height: 100vh;
437
509
  }
438
510
 
439
- [data-v-a440e92e] .ag-root-wrapper {
440
- cursor: default;
441
- position: relative;
511
+ .goods-card[data-v-87a0d832] {
442
512
  display: flex;
443
513
  flex-direction: column;
444
- overflow: hidden;
445
- white-space: normal;
446
- border: 1px solid #cecece !important; /* 设置最外边的边框 */
447
- margin-right: 2px !important;
448
- margin-left: 2px !important;
449
- margin-bottom: 60px !important;
450
- }
451
-
452
- [data-v-a440e92e] .ag-header-cell:first-child .ag-header-cell-label {
453
- display: flex !important;
454
- justify-content: center !important;
455
- align-items: center !important;
456
- text-align: center !important;
457
- }
458
-
459
- .ag-theme-alpine[data-v-a440e92e] {
460
- /* and between columns */
461
- --ag-cell-horizontal-border: solid #cecece;
462
- --ag-header-cell-horizontal-border: solid #cecece;
463
- --ag-header-foreground-color: #3a7af9;
464
- }
465
-
466
- [data-v-a440e92e] .ag-header-cell {
467
- border-right-style: solid;
468
- border-right-width: 1px;
469
- border-right-color: #cecece; /* 深灰色底边框 */
470
- }
471
-
472
- /* 如果你想要更具体的样式,比如只针对第一个表头列 */
473
- .ag-header-cell[data-v-a440e92e]:first-child {
474
- border-left: none; /* 移除左侧边框,如果需要的话 */
475
- }
476
-
477
- /* 或者针对最后一列 */
478
- .ag-header-cell[data-v-a440e92e]:last-child {
479
- border-right: none; /* 移除右侧边框,如果需要的话 */
480
- }
481
-
482
- /* 选中行的样式 */
483
- [data-v-a440e92e] .ag-row-selected::before {
484
- background-color: rgba(183, 249, 177, 0.5803921569);
485
- }
486
-
487
- /* 选中焦点行的样式 */
488
- [data-v-a440e92e] .ag-row-hover.ag-row-selected::before {
489
- background-color: rgba(183, 249, 177, 0.5803921569);
490
- background-image: none;
491
- }
492
-
493
- /* 表头的样式 */
494
- [data-v-a440e92e] .ag-header {
495
- background-color: #dbefff;
496
- text-align: center;
497
- }
498
-
499
- [data-v-a440e92e] .ag-checkbox-input-wrapper.ag-disabled {
500
- opacity: 1;
501
- }
502
-
503
- /* 默认行的背景色 */
504
- [data-v-a440e92e] .ag-row-odd {
505
- background-color: aliceblue;
514
+ justify-content: flex-start;
506
515
  }
507
516
 
508
- /* 取消选中行的样式 */
509
- [data-v-a440e92e] .ag-row-hover:not(.ag-row-selected)::before {
510
- background-color: #ecf0f1;
517
+ .card-desc[data-v-87a0d832] {
518
+ text-align: left;
511
519
  }
512
520
 
513
- [data-v-a440e92e] .ag-header-cell-label {
514
- white-space: pre-line !important; /* 强制允许换行 */
521
+ .button-area[data-v-87a0d832] {
522
+ display: flex;
523
+ justify-content: space-between;
524
+ align-items: center;
525
+ top: 20px;
526
+ margin-top: 5%;
527
+ margin-left: 5%;
528
+ margin-right: 5%;
529
+ margin-bottom: 5%;
530
+ position: sticky;
531
+ z-index: 1000;
515
532
  }
516
533
 
517
- /*
518
-
519
- :deep(.ag-header-cell.ag-header-cell-wrap-text.ag-header-cell-auto-height.ag-focus-managed) {
520
- padding: 0 4px 0 4px !important;
521
- }
522
- :deep(.ag-cell-value.ag-cell-not-inline-editing.ag-cell-normal-height) {
523
- padding: 0 3px 0 3px !important;
534
+ .button-type[data-v-87a0d832] {
535
+ font-size: 14px;
536
+ border-radius: 10px;
537
+ font-family: "阿里巴巴普惠体Regular";
538
+ position: relative;
524
539
  }
525
540
 
526
- :deep(.ag-selection-checkbox) {
527
- margin: 0 auto!important;
528
- text-align: center;
529
-
530
- }
531
- .centered-checkbox .ag-cell-wrapper {
532
- padding:0 3px;
533
- display: flex;
534
- justify-content: center;
535
- align-items: center;
541
+ .slot-left[data-v-87a0d832] {
542
+ margin-top: 20px;
543
+ margin-left: 20px;
544
+ width: 100%;
545
+ height: 60px;
536
546
  }
537
547
 
538
- .centered-header .ag-header-cell-label {
539
- padding:0 4px;
540
- display: flex;
541
- justify-content: center;
542
- }
543
- :deep(.ag-input-field-input.ag-checkbox-input){
544
- text-align: center;
545
- display: flex;
546
- justify-content: center;
547
- }*/
548
- .loading-overlay[data-v-a440e92e] {
549
- position: absolute;
550
- top: 0;
551
- left: 0;
552
- right: 0;
553
- bottom: 0;
554
- background-color: rgba(255, 255, 255, 0.5);
555
- display: flex;
556
- z-index: 1000;
548
+ .slot-right[data-v-87a0d832] {
549
+ margin-top: 20px;
550
+ width: 100%;
551
+ height: 60px;
552
+ border-radius: 10px;
553
+ color: white;
554
+ font-size: 16px;
555
+ font-weight: 600;
556
+ font-family: "阿里巴巴普惠体Light";
557
557
  }
558
558
 
559
559
  .rowContent[data-v-1b695265] {
@@ -626,6 +626,14 @@ nav[data-v-35c7b3ce] .jh-button[data-v-35c7b3ce] {
626
626
  border-color: red;
627
627
  }
628
628
  }
629
+ [data-v-804c414a] .van-checkbox {
630
+ padding: 5px 0;
631
+ }
632
+
633
+ [data-v-6e3557b8] .van-checkbox {
634
+ padding: 5px 0;
635
+ }
636
+
629
637
  [data-v-7351fe97] .van-popup {
630
638
  max-height: 80%;
631
639
  }
@@ -653,12 +661,4 @@ nav[data-v-35c7b3ce] .jh-button[data-v-35c7b3ce] {
653
661
  overflow: hidden;
654
662
  overflow-y: auto;
655
663
  height: calc(100% - 100px);
656
- }
657
-
658
- [data-v-804c414a] .van-checkbox {
659
- padding: 5px 0;
660
- }
661
-
662
- [data-v-6e3557b8] .van-checkbox {
663
- padding: 5px 0;
664
664
  }