@baosight/erm 1.6.3 → 1.6.5

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,4 +1,214 @@
1
1
  @charset "UTF-8";
2
+ .rowContent[data-v-1b695265] {
3
+ display: flex;
4
+ flex-direction: row;
5
+ justify-content: center;
6
+ width: 100%;
7
+ margin: 0;
8
+ padding: 0;
9
+ }
10
+ .rowContent[data-v-1b695265] .mainContent[data-v-1b695265] {
11
+ width: 100%;
12
+ display: flex;
13
+ flex-direction: column;
14
+ justify-content: start;
15
+ overflow: auto;
16
+ border-radius: 15px;
17
+ background-color: #ffffff;
18
+ }
19
+ .rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .singleRow[data-v-1b695265] {
20
+ display: flex;
21
+ flex-direction: column;
22
+ justify-content: flex-start;
23
+ padding: 0px 0;
24
+ border-bottom: 1px solid rgba(204, 204, 204, 0.4666666667);
25
+ }
26
+ .rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .colDesc[data-v-1b695265] {
27
+ display: flex;
28
+ flex-direction: row;
29
+ justify-content: flex-start;
30
+ align-items: center;
31
+ font-size: 14px;
32
+ font-family: "阿里巴巴普惠体Regular";
33
+ padding-left: 4px;
34
+ }
35
+ .rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .colDesc[data-v-1b695265] .required[data-v-1b695265] {
36
+ content: "*";
37
+ display: contents;
38
+ color: red;
39
+ }
40
+ .rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .colData[data-v-1b695265] {
41
+ font-size: 14px;
42
+ font-family: "阿里巴巴普惠体Regular";
43
+ }
44
+
45
+ .mainTitle[data-v-1b695265] {
46
+ display: flex;
47
+ flex-direction: column;
48
+ justify-content: center;
49
+ align-items: center;
50
+ font-family: "阿里巴巴普惠体Bold";
51
+ font-size: 23px;
52
+ color: #548cf6;
53
+ margin: 10px;
54
+ }
55
+
56
+ [data-v-1b695265] .checkError {
57
+ border-bottom: 1px solid red;
58
+ animation: blink-1b695265 2s linear infinite;
59
+ }
60
+
61
+ @keyframes blink-1b695265 {
62
+ 0% {
63
+ border-color: red;
64
+ }
65
+ 50% {
66
+ border-color: transparent;
67
+ }
68
+ 100% {
69
+ border-color: red;
70
+ }
71
+ }
72
+ .baseStyle[data-v-a440e92e] {
73
+ width: 99%;
74
+ height: 100%;
75
+ }
76
+
77
+ [data-v-a440e92e] .ag-header-group-cell {
78
+ border-right-style: solid;
79
+ border-right-width: 1px;
80
+ border-right-color: #cecece;
81
+ display: flex;
82
+ justify-content: center;
83
+ align-items: center;
84
+ }
85
+
86
+ [data-v-a440e92e] .ag-header-cell-label {
87
+ display: flex;
88
+ justify-content: center;
89
+ align-items: center;
90
+ }
91
+
92
+ [data-v-a440e92e] .ag-root-wrapper {
93
+ cursor: default;
94
+ position: relative;
95
+ display: flex;
96
+ flex-direction: column;
97
+ overflow: hidden;
98
+ white-space: normal;
99
+ border: 1px solid #cecece !important; /* 设置最外边的边框 */
100
+ margin-right: 2px !important;
101
+ margin-left: 2px !important;
102
+ margin-bottom: 60px !important;
103
+ }
104
+
105
+ [data-v-a440e92e] .ag-header-cell:first-child .ag-header-cell-label {
106
+ display: flex !important;
107
+ justify-content: center !important;
108
+ align-items: center !important;
109
+ text-align: center !important;
110
+ }
111
+
112
+ .ag-theme-alpine[data-v-a440e92e] {
113
+ /* and between columns */
114
+ --ag-cell-horizontal-border: solid #cecece;
115
+ --ag-header-cell-horizontal-border: solid #cecece;
116
+ --ag-header-foreground-color: #3a7af9;
117
+ }
118
+
119
+ [data-v-a440e92e] .ag-header-cell {
120
+ border-right-style: solid;
121
+ border-right-width: 1px;
122
+ border-right-color: #cecece; /* 深灰色底边框 */
123
+ }
124
+
125
+ /* 如果你想要更具体的样式,比如只针对第一个表头列 */
126
+ .ag-header-cell[data-v-a440e92e]:first-child {
127
+ border-left: none; /* 移除左侧边框,如果需要的话 */
128
+ }
129
+
130
+ /* 或者针对最后一列 */
131
+ .ag-header-cell[data-v-a440e92e]:last-child {
132
+ border-right: none; /* 移除右侧边框,如果需要的话 */
133
+ }
134
+
135
+ /* 选中行的样式 */
136
+ [data-v-a440e92e] .ag-row-selected::before {
137
+ background-color: rgba(183, 249, 177, 0.5803921569);
138
+ }
139
+
140
+ /* 选中焦点行的样式 */
141
+ [data-v-a440e92e] .ag-row-hover.ag-row-selected::before {
142
+ background-color: rgba(183, 249, 177, 0.5803921569);
143
+ background-image: none;
144
+ }
145
+
146
+ /* 表头的样式 */
147
+ [data-v-a440e92e] .ag-header {
148
+ background-color: #dbefff;
149
+ text-align: center;
150
+ }
151
+
152
+ [data-v-a440e92e] .ag-checkbox-input-wrapper.ag-disabled {
153
+ opacity: 1;
154
+ }
155
+
156
+ /* 默认行的背景色 */
157
+ [data-v-a440e92e] .ag-row-odd {
158
+ background-color: aliceblue;
159
+ }
160
+
161
+ /* 取消选中行的样式 */
162
+ [data-v-a440e92e] .ag-row-hover:not(.ag-row-selected)::before {
163
+ background-color: #ecf0f1;
164
+ }
165
+
166
+ [data-v-a440e92e] .ag-header-cell-label {
167
+ white-space: pre-line !important; /* 强制允许换行 */
168
+ }
169
+
170
+ /*
171
+
172
+ :deep(.ag-header-cell.ag-header-cell-wrap-text.ag-header-cell-auto-height.ag-focus-managed) {
173
+ padding: 0 4px 0 4px !important;
174
+ }
175
+ :deep(.ag-cell-value.ag-cell-not-inline-editing.ag-cell-normal-height) {
176
+ padding: 0 3px 0 3px !important;
177
+ }
178
+
179
+ :deep(.ag-selection-checkbox) {
180
+ margin: 0 auto!important;
181
+ text-align: center;
182
+
183
+ }
184
+ .centered-checkbox .ag-cell-wrapper {
185
+ padding:0 3px;
186
+ display: flex;
187
+ justify-content: center;
188
+ align-items: center;
189
+ }
190
+
191
+ .centered-header .ag-header-cell-label {
192
+ padding:0 4px;
193
+ display: flex;
194
+ justify-content: center;
195
+ }
196
+ :deep(.ag-input-field-input.ag-checkbox-input){
197
+ text-align: center;
198
+ display: flex;
199
+ justify-content: center;
200
+ }*/
201
+ .loading-overlay[data-v-a440e92e] {
202
+ position: absolute;
203
+ top: 0;
204
+ left: 0;
205
+ right: 0;
206
+ bottom: 0;
207
+ background-color: rgba(255, 255, 255, 0.5);
208
+ display: flex;
209
+ z-index: 1000;
210
+ }
211
+
2
212
  .container[data-v-87a0d832] {
3
213
  width: 100%;
4
214
  height: 100%;
@@ -416,216 +626,6 @@ nav[data-v-35c7b3ce] .jh-button[data-v-35c7b3ce] {
416
626
  color: #fff; /* 勾选后的文字颜色 */
417
627
  }
418
628
 
419
- .rowContent[data-v-1b695265] {
420
- display: flex;
421
- flex-direction: row;
422
- justify-content: center;
423
- width: 100%;
424
- margin: 0;
425
- padding: 0;
426
- }
427
- .rowContent[data-v-1b695265] .mainContent[data-v-1b695265] {
428
- width: 100%;
429
- display: flex;
430
- flex-direction: column;
431
- justify-content: start;
432
- overflow: auto;
433
- border-radius: 15px;
434
- background-color: #ffffff;
435
- }
436
- .rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .singleRow[data-v-1b695265] {
437
- display: flex;
438
- flex-direction: column;
439
- justify-content: flex-start;
440
- padding: 0px 0;
441
- border-bottom: 1px solid rgba(204, 204, 204, 0.4666666667);
442
- }
443
- .rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .colDesc[data-v-1b695265] {
444
- display: flex;
445
- flex-direction: row;
446
- justify-content: flex-start;
447
- align-items: center;
448
- font-size: 14px;
449
- font-family: "阿里巴巴普惠体Regular";
450
- padding-left: 4px;
451
- }
452
- .rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .colDesc[data-v-1b695265] .required[data-v-1b695265] {
453
- content: "*";
454
- display: contents;
455
- color: red;
456
- }
457
- .rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .colData[data-v-1b695265] {
458
- font-size: 14px;
459
- font-family: "阿里巴巴普惠体Regular";
460
- }
461
-
462
- .mainTitle[data-v-1b695265] {
463
- display: flex;
464
- flex-direction: column;
465
- justify-content: center;
466
- align-items: center;
467
- font-family: "阿里巴巴普惠体Bold";
468
- font-size: 23px;
469
- color: #548cf6;
470
- margin: 10px;
471
- }
472
-
473
- [data-v-1b695265] .checkError {
474
- border-bottom: 1px solid red;
475
- animation: blink-1b695265 2s linear infinite;
476
- }
477
-
478
- @keyframes blink-1b695265 {
479
- 0% {
480
- border-color: red;
481
- }
482
- 50% {
483
- border-color: transparent;
484
- }
485
- 100% {
486
- border-color: red;
487
- }
488
- }
489
- .baseStyle[data-v-a440e92e] {
490
- width: 99%;
491
- height: 100%;
492
- }
493
-
494
- [data-v-a440e92e] .ag-header-group-cell {
495
- border-right-style: solid;
496
- border-right-width: 1px;
497
- border-right-color: #cecece;
498
- display: flex;
499
- justify-content: center;
500
- align-items: center;
501
- }
502
-
503
- [data-v-a440e92e] .ag-header-cell-label {
504
- display: flex;
505
- justify-content: center;
506
- align-items: center;
507
- }
508
-
509
- [data-v-a440e92e] .ag-root-wrapper {
510
- cursor: default;
511
- position: relative;
512
- display: flex;
513
- flex-direction: column;
514
- overflow: hidden;
515
- white-space: normal;
516
- border: 1px solid #cecece !important; /* 设置最外边的边框 */
517
- margin-right: 2px !important;
518
- margin-left: 2px !important;
519
- margin-bottom: 60px !important;
520
- }
521
-
522
- [data-v-a440e92e] .ag-header-cell:first-child .ag-header-cell-label {
523
- display: flex !important;
524
- justify-content: center !important;
525
- align-items: center !important;
526
- text-align: center !important;
527
- }
528
-
529
- .ag-theme-alpine[data-v-a440e92e] {
530
- /* and between columns */
531
- --ag-cell-horizontal-border: solid #cecece;
532
- --ag-header-cell-horizontal-border: solid #cecece;
533
- --ag-header-foreground-color: #3a7af9;
534
- }
535
-
536
- [data-v-a440e92e] .ag-header-cell {
537
- border-right-style: solid;
538
- border-right-width: 1px;
539
- border-right-color: #cecece; /* 深灰色底边框 */
540
- }
541
-
542
- /* 如果你想要更具体的样式,比如只针对第一个表头列 */
543
- .ag-header-cell[data-v-a440e92e]:first-child {
544
- border-left: none; /* 移除左侧边框,如果需要的话 */
545
- }
546
-
547
- /* 或者针对最后一列 */
548
- .ag-header-cell[data-v-a440e92e]:last-child {
549
- border-right: none; /* 移除右侧边框,如果需要的话 */
550
- }
551
-
552
- /* 选中行的样式 */
553
- [data-v-a440e92e] .ag-row-selected::before {
554
- background-color: rgba(183, 249, 177, 0.5803921569);
555
- }
556
-
557
- /* 选中焦点行的样式 */
558
- [data-v-a440e92e] .ag-row-hover.ag-row-selected::before {
559
- background-color: rgba(183, 249, 177, 0.5803921569);
560
- background-image: none;
561
- }
562
-
563
- /* 表头的样式 */
564
- [data-v-a440e92e] .ag-header {
565
- background-color: #dbefff;
566
- text-align: center;
567
- }
568
-
569
- [data-v-a440e92e] .ag-checkbox-input-wrapper.ag-disabled {
570
- opacity: 1;
571
- }
572
-
573
- /* 默认行的背景色 */
574
- [data-v-a440e92e] .ag-row-odd {
575
- background-color: aliceblue;
576
- }
577
-
578
- /* 取消选中行的样式 */
579
- [data-v-a440e92e] .ag-row-hover:not(.ag-row-selected)::before {
580
- background-color: #ecf0f1;
581
- }
582
-
583
- [data-v-a440e92e] .ag-header-cell-label {
584
- white-space: pre-line !important; /* 强制允许换行 */
585
- }
586
-
587
- /*
588
-
589
- :deep(.ag-header-cell.ag-header-cell-wrap-text.ag-header-cell-auto-height.ag-focus-managed) {
590
- padding: 0 4px 0 4px !important;
591
- }
592
- :deep(.ag-cell-value.ag-cell-not-inline-editing.ag-cell-normal-height) {
593
- padding: 0 3px 0 3px !important;
594
- }
595
-
596
- :deep(.ag-selection-checkbox) {
597
- margin: 0 auto!important;
598
- text-align: center;
599
-
600
- }
601
- .centered-checkbox .ag-cell-wrapper {
602
- padding:0 3px;
603
- display: flex;
604
- justify-content: center;
605
- align-items: center;
606
- }
607
-
608
- .centered-header .ag-header-cell-label {
609
- padding:0 4px;
610
- display: flex;
611
- justify-content: center;
612
- }
613
- :deep(.ag-input-field-input.ag-checkbox-input){
614
- text-align: center;
615
- display: flex;
616
- justify-content: center;
617
- }*/
618
- .loading-overlay[data-v-a440e92e] {
619
- position: absolute;
620
- top: 0;
621
- left: 0;
622
- right: 0;
623
- bottom: 0;
624
- background-color: rgba(255, 255, 255, 0.5);
625
- display: flex;
626
- z-index: 1000;
627
- }
628
-
629
629
  [data-v-7351fe97] .van-popup {
630
630
  max-height: 80%;
631
631
  }
@@ -655,10 +655,10 @@ nav[data-v-35c7b3ce] .jh-button[data-v-35c7b3ce] {
655
655
  height: calc(100% - 100px);
656
656
  }
657
657
 
658
- [data-v-6e3557b8] .van-checkbox {
658
+ [data-v-804c414a] .van-checkbox {
659
659
  padding: 5px 0;
660
660
  }
661
661
 
662
- [data-v-804c414a] .van-checkbox {
662
+ [data-v-6e3557b8] .van-checkbox {
663
663
  padding: 5px 0;
664
664
  }