@baosight/erm 1.6.9 → 1.7.0
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/ermGrid/ermGrid.vue.d.ts +6 -6
- package/lib/index.css +2 -2
- package/lib/index.esm.css +135 -135
- package/lib/index.esm.js +1 -1
- package/package.json +1 -1
package/lib/index.esm.css
CHANGED
|
@@ -1,4 +1,135 @@
|
|
|
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 .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 .mainContent .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 .mainContent .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 .mainContent .colDesc .required[data-v-1b695265] {
|
|
36
|
+
content: "*";
|
|
37
|
+
display: contents;
|
|
38
|
+
color: red;
|
|
39
|
+
}
|
|
40
|
+
.rowContent .mainContent .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
|
+
.container[data-v-87a0d832] {
|
|
73
|
+
width: 100%;
|
|
74
|
+
height: 100%;
|
|
75
|
+
position: relative;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.box[data-v-87a0d832] {
|
|
79
|
+
display: flex;
|
|
80
|
+
justify-content: center;
|
|
81
|
+
align-items: center;
|
|
82
|
+
height: 100vh;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.goods-card[data-v-87a0d832] {
|
|
86
|
+
display: flex;
|
|
87
|
+
flex-direction: column;
|
|
88
|
+
justify-content: flex-start;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.card-desc[data-v-87a0d832] {
|
|
92
|
+
text-align: left;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.button-area[data-v-87a0d832] {
|
|
96
|
+
display: flex;
|
|
97
|
+
justify-content: space-between;
|
|
98
|
+
align-items: center;
|
|
99
|
+
top: 20px;
|
|
100
|
+
margin-top: 5%;
|
|
101
|
+
margin-left: 5%;
|
|
102
|
+
margin-right: 5%;
|
|
103
|
+
margin-bottom: 5%;
|
|
104
|
+
position: sticky;
|
|
105
|
+
z-index: 1000;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.button-type[data-v-87a0d832] {
|
|
109
|
+
font-size: 14px;
|
|
110
|
+
border-radius: 10px;
|
|
111
|
+
font-family: "阿里巴巴普惠体Regular";
|
|
112
|
+
position: relative;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.slot-left[data-v-87a0d832] {
|
|
116
|
+
margin-top: 20px;
|
|
117
|
+
margin-left: 20px;
|
|
118
|
+
width: 100%;
|
|
119
|
+
height: 60px;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.slot-right[data-v-87a0d832] {
|
|
123
|
+
margin-top: 20px;
|
|
124
|
+
width: 100%;
|
|
125
|
+
height: 60px;
|
|
126
|
+
border-radius: 10px;
|
|
127
|
+
color: white;
|
|
128
|
+
font-size: 16px;
|
|
129
|
+
font-weight: 600;
|
|
130
|
+
font-family: "阿里巴巴普惠体Light";
|
|
131
|
+
}
|
|
132
|
+
|
|
2
133
|
.baseStyle[data-v-a440e92e] {
|
|
3
134
|
width: 99%;
|
|
4
135
|
height: 100%;
|
|
@@ -139,76 +270,6 @@
|
|
|
139
270
|
z-index: 1000;
|
|
140
271
|
}
|
|
141
272
|
|
|
142
|
-
.rowContent[data-v-1b695265] {
|
|
143
|
-
display: flex;
|
|
144
|
-
flex-direction: row;
|
|
145
|
-
justify-content: center;
|
|
146
|
-
width: 100%;
|
|
147
|
-
margin: 0;
|
|
148
|
-
padding: 0;
|
|
149
|
-
}
|
|
150
|
-
.rowContent .mainContent[data-v-1b695265] {
|
|
151
|
-
width: 100%;
|
|
152
|
-
display: flex;
|
|
153
|
-
flex-direction: column;
|
|
154
|
-
justify-content: start;
|
|
155
|
-
overflow: auto;
|
|
156
|
-
border-radius: 15px;
|
|
157
|
-
background-color: #ffffff;
|
|
158
|
-
}
|
|
159
|
-
.rowContent .mainContent .singleRow[data-v-1b695265] {
|
|
160
|
-
display: flex;
|
|
161
|
-
flex-direction: column;
|
|
162
|
-
justify-content: flex-start;
|
|
163
|
-
padding: 0px 0;
|
|
164
|
-
border-bottom: 1px solid rgba(204, 204, 204, 0.4666666667);
|
|
165
|
-
}
|
|
166
|
-
.rowContent .mainContent .colDesc[data-v-1b695265] {
|
|
167
|
-
display: flex;
|
|
168
|
-
flex-direction: row;
|
|
169
|
-
justify-content: flex-start;
|
|
170
|
-
align-items: center;
|
|
171
|
-
font-size: 14px;
|
|
172
|
-
font-family: "阿里巴巴普惠体Regular";
|
|
173
|
-
padding-left: 4px;
|
|
174
|
-
}
|
|
175
|
-
.rowContent .mainContent .colDesc .required[data-v-1b695265] {
|
|
176
|
-
content: "*";
|
|
177
|
-
display: contents;
|
|
178
|
-
color: red;
|
|
179
|
-
}
|
|
180
|
-
.rowContent .mainContent .colData[data-v-1b695265] {
|
|
181
|
-
font-size: 14px;
|
|
182
|
-
font-family: "阿里巴巴普惠体Regular";
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
.mainTitle[data-v-1b695265] {
|
|
186
|
-
display: flex;
|
|
187
|
-
flex-direction: column;
|
|
188
|
-
justify-content: center;
|
|
189
|
-
align-items: center;
|
|
190
|
-
font-family: "阿里巴巴普惠体Bold";
|
|
191
|
-
font-size: 23px;
|
|
192
|
-
color: #548cf6;
|
|
193
|
-
margin: 10px;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
[data-v-1b695265] .checkError {
|
|
197
|
-
border-bottom: 1px solid red;
|
|
198
|
-
animation: blink-1b695265 2s linear infinite;
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
@keyframes blink-1b695265 {
|
|
202
|
-
0% {
|
|
203
|
-
border-color: red;
|
|
204
|
-
}
|
|
205
|
-
50% {
|
|
206
|
-
border-color: transparent;
|
|
207
|
-
}
|
|
208
|
-
100% {
|
|
209
|
-
border-color: red;
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
273
|
.swiperButton[data-v-35c7b3ce] {
|
|
213
274
|
height: 100%;
|
|
214
275
|
}
|
|
@@ -565,71 +626,6 @@ nav .jh-button[data-v-35c7b3ce] {
|
|
|
565
626
|
color: #fff; /* 勾选后的文字颜色 */
|
|
566
627
|
}
|
|
567
628
|
|
|
568
|
-
.container[data-v-87a0d832] {
|
|
569
|
-
width: 100%;
|
|
570
|
-
height: 100%;
|
|
571
|
-
position: relative;
|
|
572
|
-
}
|
|
573
|
-
|
|
574
|
-
.box[data-v-87a0d832] {
|
|
575
|
-
display: flex;
|
|
576
|
-
justify-content: center;
|
|
577
|
-
align-items: center;
|
|
578
|
-
height: 100vh;
|
|
579
|
-
}
|
|
580
|
-
|
|
581
|
-
.goods-card[data-v-87a0d832] {
|
|
582
|
-
display: flex;
|
|
583
|
-
flex-direction: column;
|
|
584
|
-
justify-content: flex-start;
|
|
585
|
-
}
|
|
586
|
-
|
|
587
|
-
.card-desc[data-v-87a0d832] {
|
|
588
|
-
text-align: left;
|
|
589
|
-
}
|
|
590
|
-
|
|
591
|
-
.button-area[data-v-87a0d832] {
|
|
592
|
-
display: flex;
|
|
593
|
-
justify-content: space-between;
|
|
594
|
-
align-items: center;
|
|
595
|
-
top: 20px;
|
|
596
|
-
margin-top: 5%;
|
|
597
|
-
margin-left: 5%;
|
|
598
|
-
margin-right: 5%;
|
|
599
|
-
margin-bottom: 5%;
|
|
600
|
-
position: sticky;
|
|
601
|
-
z-index: 1000;
|
|
602
|
-
}
|
|
603
|
-
|
|
604
|
-
.button-type[data-v-87a0d832] {
|
|
605
|
-
font-size: 14px;
|
|
606
|
-
border-radius: 10px;
|
|
607
|
-
font-family: "阿里巴巴普惠体Regular";
|
|
608
|
-
position: relative;
|
|
609
|
-
}
|
|
610
|
-
|
|
611
|
-
.slot-left[data-v-87a0d832] {
|
|
612
|
-
margin-top: 20px;
|
|
613
|
-
margin-left: 20px;
|
|
614
|
-
width: 100%;
|
|
615
|
-
height: 60px;
|
|
616
|
-
}
|
|
617
|
-
|
|
618
|
-
.slot-right[data-v-87a0d832] {
|
|
619
|
-
margin-top: 20px;
|
|
620
|
-
width: 100%;
|
|
621
|
-
height: 60px;
|
|
622
|
-
border-radius: 10px;
|
|
623
|
-
color: white;
|
|
624
|
-
font-size: 16px;
|
|
625
|
-
font-weight: 600;
|
|
626
|
-
font-family: "阿里巴巴普惠体Light";
|
|
627
|
-
}
|
|
628
|
-
|
|
629
|
-
[data-v-6e3557b8] .van-checkbox {
|
|
630
|
-
padding: 5px 0;
|
|
631
|
-
}
|
|
632
|
-
|
|
633
629
|
[data-v-7351fe97] .van-popup {
|
|
634
630
|
max-height: 80%;
|
|
635
631
|
}
|
|
@@ -661,4 +657,8 @@ nav .jh-button[data-v-35c7b3ce] {
|
|
|
661
657
|
|
|
662
658
|
[data-v-804c414a] .van-checkbox {
|
|
663
659
|
padding: 5px 0;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
[data-v-6e3557b8] .van-checkbox {
|
|
663
|
+
padding: 5px 0;
|
|
664
664
|
}
|