@baosight/erm 1.2.5 → 1.2.6

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,224 @@
1
1
  @charset "UTF-8";
2
+ .baseStyle[data-v-a440e92e] {
3
+ width: 99%;
4
+ height: 100%;
5
+ margin-left: 2px;
6
+ margin-right: 2px;
7
+ }
8
+
9
+ .ag-theme-alpine[data-v-a440e92e] {
10
+ /* and between columns */
11
+ --ag-cell-horizontal-border: solid #cecece;
12
+ --ag-header-cell-horizontal-border: solid #cecece;
13
+ --ag-header-foreground-color: #3a7af9;
14
+ }
15
+
16
+ [data-v-a440e92e] .ag-header-cell {
17
+ border-right-style: solid;
18
+ border-right-width: 1px;
19
+ border-right-color: #cecece; /* 深灰色底边框 */
20
+ }
21
+
22
+ /* 如果你想要更具体的样式,比如只针对第一个表头列 */
23
+ .ag-header-cell[data-v-a440e92e]:first-child {
24
+ border-left: none; /* 移除左侧边框,如果需要的话 */
25
+ }
26
+
27
+ /* 或者针对最后一列 */
28
+ .ag-header-cell[data-v-a440e92e]:last-child {
29
+ border-right: none; /* 移除右侧边框,如果需要的话 */
30
+ }
31
+
32
+ /* 选中行的样式 */
33
+ [data-v-a440e92e] .ag-row-selected::before {
34
+ background-color: rgba(183, 249, 177, 0.5803921569);
35
+ }
36
+
37
+ /* 选中焦点行的样式 */
38
+ [data-v-a440e92e] .ag-row-hover.ag-row-selected::before {
39
+ background-color: rgba(183, 249, 177, 0.5803921569);
40
+ background-image: none;
41
+ }
42
+
43
+ /* 表头的样式 */
44
+ [data-v-a440e92e] .ag-header {
45
+ background-color: #dbefff;
46
+ }
47
+
48
+ [data-v-a440e92e] .ag-checkbox-input-wrapper.ag-disabled {
49
+ opacity: 1;
50
+ }
51
+
52
+ /* 默认行的背景色 */
53
+ [data-v-a440e92e] .ag-row-odd {
54
+ background-color: aliceblue;
55
+ }
56
+
57
+ /* 取消选中行的样式 */
58
+ [data-v-a440e92e] .ag-row-hover:not(.ag-row-selected)::before {
59
+ background-color: #ecf0f1;
60
+ }
61
+
62
+ .loading-overlay[data-v-a440e92e] {
63
+ position: absolute;
64
+ top: 0;
65
+ left: 0;
66
+ right: 0;
67
+ bottom: 0;
68
+ background-color: rgba(255, 255, 255, 0.5);
69
+ display: flex;
70
+ z-index: 1000;
71
+ }
72
+
73
+ .rowContent[data-v-1b695265] {
74
+ display: flex;
75
+ flex-direction: row;
76
+ justify-content: center;
77
+ width: 100%;
78
+ margin: 0;
79
+ padding: 0;
80
+ }
81
+ .rowContent[data-v-1b695265] .mainContent[data-v-1b695265] {
82
+ width: 100%;
83
+ display: flex;
84
+ flex-direction: column;
85
+ justify-content: start;
86
+ overflow: auto;
87
+ border-radius: 15px;
88
+ background-color: #ffffff;
89
+ }
90
+ .rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .singleRow[data-v-1b695265] {
91
+ display: flex;
92
+ flex-direction: column;
93
+ justify-content: flex-start;
94
+ padding: 0px 0;
95
+ border-bottom: 1px solid rgba(204, 204, 204, 0.4666666667);
96
+ }
97
+ .rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .colDesc[data-v-1b695265] {
98
+ display: flex;
99
+ flex-direction: row;
100
+ justify-content: flex-start;
101
+ align-items: center;
102
+ font-size: 14px;
103
+ font-family: "阿里巴巴普惠体Regular";
104
+ padding-left: 4px;
105
+ }
106
+ .rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .colDesc[data-v-1b695265] .required[data-v-1b695265] {
107
+ content: "*";
108
+ display: contents;
109
+ color: red;
110
+ }
111
+ .rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .colData[data-v-1b695265] {
112
+ font-size: 14px;
113
+ font-family: "阿里巴巴普惠体Regular";
114
+ }
115
+
116
+ .mainTitle[data-v-1b695265] {
117
+ display: flex;
118
+ flex-direction: column;
119
+ justify-content: center;
120
+ align-items: center;
121
+ font-family: "阿里巴巴普惠体Regular";
122
+ width: 100%;
123
+ text-align: center;
124
+ background-color: #3a7af9;
125
+ color: #eaf1f3;
126
+ font-size: 16px;
127
+ height: 24px;
128
+ line-height: 24px;
129
+ margin: 0 auto;
130
+ padding: 0;
131
+ }
132
+
133
+ [data-v-1b695265] .checkError {
134
+ border-bottom: 1px solid red;
135
+ animation: blink-1b695265 2s linear infinite;
136
+ }
137
+
138
+ [data-v-1b695265] .van-cell {
139
+ font-size: 12px;
140
+ }
141
+
142
+ [data-v-1b695265] .colDesc {
143
+ font-size: 12px !important;
144
+ }
145
+
146
+ [data-v-1b695265] .colData {
147
+ font-size: 12px !important;
148
+ }
149
+
150
+ @keyframes blink-1b695265 {
151
+ 0% {
152
+ border-color: red;
153
+ }
154
+ 50% {
155
+ border-color: transparent;
156
+ }
157
+ 100% {
158
+ border-color: red;
159
+ }
160
+ }
161
+ .container[data-v-87a0d832] {
162
+ width: 100%;
163
+ height: 100%;
164
+ position: relative;
165
+ }
166
+
167
+ .box[data-v-87a0d832] {
168
+ display: flex;
169
+ justify-content: center;
170
+ align-items: center;
171
+ height: 100vh;
172
+ }
173
+
174
+ .goods-card[data-v-87a0d832] {
175
+ display: flex;
176
+ flex-direction: column;
177
+ justify-content: flex-start;
178
+ }
179
+
180
+ .card-desc[data-v-87a0d832] {
181
+ text-align: left;
182
+ }
183
+
184
+ .button-area[data-v-87a0d832] {
185
+ display: flex;
186
+ justify-content: space-between;
187
+ align-items: center;
188
+ top: 20px;
189
+ margin-top: 5%;
190
+ margin-left: 5%;
191
+ margin-right: 5%;
192
+ margin-bottom: 5%;
193
+ position: sticky;
194
+ z-index: 1000;
195
+ }
196
+
197
+ .button-type[data-v-87a0d832] {
198
+ font-size: 14px;
199
+ border-radius: 10px;
200
+ font-family: "阿里巴巴普惠体Regular";
201
+ position: relative;
202
+ }
203
+
204
+ .slot-left[data-v-87a0d832] {
205
+ margin-top: 20px;
206
+ margin-left: 20px;
207
+ width: 100%;
208
+ height: 60px;
209
+ }
210
+
211
+ .slot-right[data-v-87a0d832] {
212
+ margin-top: 20px;
213
+ width: 100%;
214
+ height: 60px;
215
+ border-radius: 10px;
216
+ color: white;
217
+ font-size: 16px;
218
+ font-weight: 600;
219
+ font-family: "阿里巴巴普惠体Light";
220
+ }
221
+
2
222
  .swiperButton[data-v-35c7b3ce] {
3
223
  height: 100%;
4
224
  }
@@ -327,222 +547,30 @@ nav[data-v-35c7b3ce] .jh-button[data-v-35c7b3ce] {
327
547
  overflow-y: auto;
328
548
  }
329
549
 
330
- .container[data-v-87a0d832] {
331
- width: 100%;
332
- height: 100%;
333
- position: relative;
550
+ [data-v-35c7b3ce] div.van-checkbox__icon {
551
+ font-size: 26px;
334
552
  }
335
553
 
336
- .box[data-v-87a0d832] {
337
- display: flex;
338
- justify-content: center;
339
- align-items: center;
340
- height: 100vh;
341
- }
342
-
343
- .goods-card[data-v-87a0d832] {
344
- display: flex;
345
- flex-direction: column;
346
- justify-content: flex-start;
347
- }
348
-
349
- .card-desc[data-v-87a0d832] {
350
- text-align: left;
351
- }
352
-
353
- .button-area[data-v-87a0d832] {
354
- display: flex;
355
- justify-content: space-between;
356
- align-items: center;
357
- top: 20px;
358
- margin-top: 5%;
359
- margin-left: 5%;
360
- margin-right: 5%;
361
- margin-bottom: 5%;
362
- position: sticky;
363
- z-index: 1000;
554
+ /* 隐藏原生复选框样式 */
555
+ .van-checkbox input[data-v-35c7b3ce] {
556
+ display: none;
364
557
  }
365
558
 
366
- .button-type[data-v-87a0d832] {
367
- font-size: 14px;
368
- border-radius: 10px;
369
- font-family: "阿里巴巴普惠体Regular";
559
+ /* 自定义复选框的样式 */
560
+ .van-checkbox__label[data-v-35c7b3ce] {
370
561
  position: relative;
562
+ cursor: pointer;
371
563
  }
372
564
 
373
- .slot-left[data-v-87a0d832] {
374
- margin-top: 20px;
375
- margin-left: 20px;
376
- width: 100%;
377
- height: 60px;
378
- }
379
-
380
- .slot-right[data-v-87a0d832] {
381
- margin-top: 20px;
382
- width: 100%;
383
- height: 60px;
384
- border-radius: 10px;
385
- color: white;
386
- font-size: 16px;
387
- font-weight: 600;
388
- font-family: "阿里巴巴普惠体Light";
389
- }
390
-
391
- .rowContent[data-v-1b695265] {
392
- display: flex;
393
- flex-direction: row;
394
- justify-content: center;
395
- width: 100%;
396
- margin: 0;
397
- padding: 0;
398
- }
399
- .rowContent[data-v-1b695265] .mainContent[data-v-1b695265] {
400
- width: 100%;
401
- display: flex;
402
- flex-direction: column;
403
- justify-content: start;
404
- overflow: auto;
405
- border-radius: 15px;
406
- background-color: #ffffff;
407
- }
408
- .rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .singleRow[data-v-1b695265] {
409
- display: flex;
410
- flex-direction: column;
411
- justify-content: flex-start;
412
- padding: 0px 0;
413
- border-bottom: 1px solid rgba(204, 204, 204, 0.4666666667);
414
- }
415
- .rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .colDesc[data-v-1b695265] {
416
- display: flex;
417
- flex-direction: row;
418
- justify-content: flex-start;
419
- align-items: center;
420
- font-size: 14px;
421
- font-family: "阿里巴巴普惠体Regular";
422
- padding-left: 4px;
423
- }
424
- .rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .colDesc[data-v-1b695265] .required[data-v-1b695265] {
425
- content: "*";
426
- display: contents;
427
- color: red;
428
- }
429
- .rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .colData[data-v-1b695265] {
430
- font-size: 14px;
431
- font-family: "阿里巴巴普惠体Regular";
432
- }
433
-
434
- .mainTitle[data-v-1b695265] {
435
- display: flex;
436
- flex-direction: column;
437
- justify-content: center;
438
- align-items: center;
439
- font-family: "阿里巴巴普惠体Regular";
440
- width: 100%;
441
- text-align: center;
442
- background-color: #3a7af9;
443
- color: #eaf1f3;
444
- font-size: 16px;
445
- height: 24px;
446
- line-height: 24px;
447
- margin: 0 auto;
448
- padding: 0;
449
- }
450
-
451
- [data-v-1b695265] .checkError {
452
- border-bottom: 1px solid red;
453
- animation: blink-1b695265 2s linear infinite;
454
- }
455
-
456
- [data-v-1b695265] .van-cell {
457
- font-size: 12px;
458
- }
459
-
460
- [data-v-1b695265] .colDesc {
461
- font-size: 12px !important;
462
- }
463
-
464
- [data-v-1b695265] .colData {
465
- font-size: 12px !important;
466
- }
467
-
468
- @keyframes blink-1b695265 {
469
- 0% {
470
- border-color: red;
471
- }
472
- 50% {
473
- border-color: transparent;
474
- }
475
- 100% {
476
- border-color: red;
477
- }
478
- }
479
- .baseStyle[data-v-a440e92e] {
480
- width: 99%;
481
- height: 100%;
482
- margin-left: 2px;
483
- margin-right: 2px;
484
- }
485
-
486
- .ag-theme-alpine[data-v-a440e92e] {
487
- /* and between columns */
488
- --ag-cell-horizontal-border: solid #cecece;
489
- --ag-header-cell-horizontal-border: solid #cecece;
490
- --ag-header-foreground-color: #3a7af9;
491
- }
492
-
493
- [data-v-a440e92e] .ag-header-cell {
494
- border-right-style: solid;
495
- border-right-width: 1px;
496
- border-right-color: #cecece; /* 深灰色底边框 */
497
- }
498
-
499
- /* 如果你想要更具体的样式,比如只针对第一个表头列 */
500
- .ag-header-cell[data-v-a440e92e]:first-child {
501
- border-left: none; /* 移除左侧边框,如果需要的话 */
502
- }
503
-
504
- /* 或者针对最后一列 */
505
- .ag-header-cell[data-v-a440e92e]:last-child {
506
- border-right: none; /* 移除右侧边框,如果需要的话 */
507
- }
508
-
509
- /* 选中行的样式 */
510
- [data-v-a440e92e] .ag-row-selected::before {
511
- background-color: rgba(183, 249, 177, 0.5803921569);
512
- }
513
-
514
- /* 选中焦点行的样式 */
515
- [data-v-a440e92e] .ag-row-hover.ag-row-selected::before {
516
- background-color: rgba(183, 249, 177, 0.5803921569);
517
- background-image: none;
518
- }
519
-
520
- /* 表头的样式 */
521
- [data-v-a440e92e] .ag-header {
522
- background-color: #dbefff;
523
- }
524
-
525
- [data-v-a440e92e] .ag-checkbox-input-wrapper.ag-disabled {
526
- opacity: 1;
527
- }
528
-
529
- /* 默认行的背景色 */
530
- [data-v-a440e92e] .ag-row-odd {
531
- background-color: aliceblue;
532
- }
533
-
534
- /* 取消选中行的样式 */
535
- [data-v-a440e92e] .ag-row-hover:not(.ag-row-selected)::before {
536
- background-color: #ecf0f1;
537
- }
538
-
539
- .loading-overlay[data-v-a440e92e] {
565
+ /* 自定义勾选后的图标样式 */
566
+ .van-checkbox__mark[data-v-35c7b3ce] {
540
567
  position: absolute;
541
568
  top: 0;
542
569
  left: 0;
543
- right: 0;
544
- bottom: 0;
545
- background-color: rgba(255, 255, 255, 0.5);
546
- display: flex;
547
- z-index: 1000;
570
+ width: 100%;
571
+ height: 100%;
572
+ background-color: #1989fa; /* 勾选后的颜色 */
573
+ mask-image: none;
574
+ -webkit-mask-image: none;
575
+ color: #fff; /* 勾选后的文字颜色 */
548
576
  }