@baosight/erm 1.2.5 → 1.2.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/components/MobileCheckGrid.vue.d.ts +214 -0
- package/lib/components/MobileRadio.vue.d.ts +175 -0
- package/lib/ermGrid/ermGrid.vue.d.ts +8 -7
- package/lib/ermList/ermList.vue.d.ts +5 -5
- package/lib/index.css +2 -2
- package/lib/index.esm.css +155 -81
- package/lib/index.esm.js +1 -1
- package/lib/use/eiService.d.ts +1 -1
- package/package.json +3 -2
package/lib/index.esm.css
CHANGED
|
@@ -1,4 +1,74 @@
|
|
|
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
|
+
}
|
|
2
72
|
.swiperButton[data-v-35c7b3ce] {
|
|
3
73
|
height: 100%;
|
|
4
74
|
}
|
|
@@ -327,6 +397,34 @@ nav[data-v-35c7b3ce] .jh-button[data-v-35c7b3ce] {
|
|
|
327
397
|
overflow-y: auto;
|
|
328
398
|
}
|
|
329
399
|
|
|
400
|
+
[data-v-35c7b3ce] div.van-checkbox__icon {
|
|
401
|
+
font-size: 26px;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
/* 隐藏原生复选框样式 */
|
|
405
|
+
.van-checkbox input[data-v-35c7b3ce] {
|
|
406
|
+
display: none;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
/* 自定义复选框的样式 */
|
|
410
|
+
.van-checkbox__label[data-v-35c7b3ce] {
|
|
411
|
+
position: relative;
|
|
412
|
+
cursor: pointer;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
/* 自定义勾选后的图标样式 */
|
|
416
|
+
.van-checkbox__mark[data-v-35c7b3ce] {
|
|
417
|
+
position: absolute;
|
|
418
|
+
top: 0;
|
|
419
|
+
left: 0;
|
|
420
|
+
width: 100%;
|
|
421
|
+
height: 100%;
|
|
422
|
+
background-color: #1989fa; /* 勾选后的颜色 */
|
|
423
|
+
mask-image: none;
|
|
424
|
+
-webkit-mask-image: none;
|
|
425
|
+
color: #fff; /* 勾选后的文字颜色 */
|
|
426
|
+
}
|
|
427
|
+
|
|
330
428
|
.container[data-v-87a0d832] {
|
|
331
429
|
width: 100%;
|
|
332
430
|
height: 100%;
|
|
@@ -388,99 +486,41 @@ nav[data-v-35c7b3ce] .jh-button[data-v-35c7b3ce] {
|
|
|
388
486
|
font-family: "阿里巴巴普惠体Light";
|
|
389
487
|
}
|
|
390
488
|
|
|
391
|
-
.
|
|
392
|
-
|
|
393
|
-
|
|
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);
|
|
489
|
+
.baseStyle[data-v-a440e92e] {
|
|
490
|
+
width: 99%;
|
|
491
|
+
height: 100%;
|
|
414
492
|
}
|
|
415
|
-
|
|
493
|
+
|
|
494
|
+
[data-v-a440e92e] .ag-header-group-cell {
|
|
495
|
+
border-right-style: solid;
|
|
496
|
+
border-right-width: 1px;
|
|
497
|
+
border-right-color: #cecece;
|
|
416
498
|
display: flex;
|
|
417
|
-
|
|
418
|
-
justify-content: flex-start;
|
|
499
|
+
justify-content: center;
|
|
419
500
|
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
501
|
}
|
|
433
502
|
|
|
434
|
-
|
|
503
|
+
[data-v-a440e92e] .ag-header-cell-label {
|
|
435
504
|
display: flex;
|
|
436
|
-
flex-direction: column;
|
|
437
505
|
justify-content: center;
|
|
438
506
|
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
507
|
}
|
|
463
508
|
|
|
464
|
-
[data-v-
|
|
465
|
-
|
|
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;
|
|
466
520
|
}
|
|
467
521
|
|
|
468
|
-
|
|
469
|
-
|
|
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;
|
|
522
|
+
[data-v-a440e92e] .ag-header-cell:first-child .ag-header-cell-label {
|
|
523
|
+
text-align: center !important;
|
|
484
524
|
}
|
|
485
525
|
|
|
486
526
|
.ag-theme-alpine[data-v-a440e92e] {
|
|
@@ -520,6 +560,7 @@ nav[data-v-35c7b3ce] .jh-button[data-v-35c7b3ce] {
|
|
|
520
560
|
/* 表头的样式 */
|
|
521
561
|
[data-v-a440e92e] .ag-header {
|
|
522
562
|
background-color: #dbefff;
|
|
563
|
+
text-align: center;
|
|
523
564
|
}
|
|
524
565
|
|
|
525
566
|
[data-v-a440e92e] .ag-checkbox-input-wrapper.ag-disabled {
|
|
@@ -545,4 +586,37 @@ nav[data-v-35c7b3ce] .jh-button[data-v-35c7b3ce] {
|
|
|
545
586
|
background-color: rgba(255, 255, 255, 0.5);
|
|
546
587
|
display: flex;
|
|
547
588
|
z-index: 1000;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
[data-v-7351fe97] .van-popup {
|
|
592
|
+
max-height: 80%;
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
[data-v-7351fe97] .placeholder {
|
|
596
|
+
color: #c8c9cc !important;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.result-color[data-v-7351fe97] {
|
|
600
|
+
color: #323233;
|
|
601
|
+
word-break: break-all;
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
[data-v-7351fe97] .van-picker__toolbar {
|
|
605
|
+
background: #fff;
|
|
606
|
+
margin-top: 0;
|
|
607
|
+
width: 100%;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.fix--cell[data-v-7351fe97] {
|
|
611
|
+
height: 100px;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.checkboxGroup[data-v-7351fe97] {
|
|
615
|
+
overflow: hidden;
|
|
616
|
+
overflow-y: auto;
|
|
617
|
+
height: calc(100% - 100px);
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
[data-v-6e3557b8] .van-checkbox {
|
|
621
|
+
padding: 5px 0;
|
|
548
622
|
}
|