@baosight/erm 1.6.6 → 1.6.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/MobileButtonEdit.vue.d.ts +6 -0
- package/lib/components/MobileCheckEdit.vue.d.ts +6 -0
- package/lib/components/MobileCheckGrid.vue.d.ts +6 -0
- package/lib/components/MobileDate.vue.d.ts +8 -2
- package/lib/components/MobileLookUp.vue.d.ts +6 -0
- package/lib/components/MobileRadio.vue.d.ts +6 -0
- package/lib/components/MobileSpin.vue.d.ts +6 -0
- package/lib/index.css +1 -1
- package/lib/index.esm.css +374 -374
- package/lib/index.esm.js +1 -1
- package/package.json +1 -1
package/lib/index.esm.css
CHANGED
|
@@ -1,275 +1,4 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
|
-
.baseStyle[data-v-a440e92e] {
|
|
3
|
-
width: 99%;
|
|
4
|
-
height: 100%;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
[data-v-a440e92e] .ag-header-group-cell {
|
|
8
|
-
border-right-style: solid;
|
|
9
|
-
border-right-width: 1px;
|
|
10
|
-
border-right-color: #cecece;
|
|
11
|
-
display: flex;
|
|
12
|
-
justify-content: center;
|
|
13
|
-
align-items: center;
|
|
14
|
-
}
|
|
15
|
-
|
|
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;
|
|
25
|
-
display: flex;
|
|
26
|
-
flex-direction: column;
|
|
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;
|
|
33
|
-
}
|
|
34
|
-
|
|
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;
|
|
40
|
-
}
|
|
41
|
-
|
|
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;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
[data-v-a440e92e] .ag-header-cell {
|
|
50
|
-
border-right-style: solid;
|
|
51
|
-
border-right-width: 1px;
|
|
52
|
-
border-right-color: #cecece; /* 深灰色底边框 */
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
/* 如果你想要更具体的样式,比如只针对第一个表头列 */
|
|
56
|
-
.ag-header-cell[data-v-a440e92e]:first-child {
|
|
57
|
-
border-left: none; /* 移除左侧边框,如果需要的话 */
|
|
58
|
-
}
|
|
59
|
-
|
|
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;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
.container[data-v-87a0d832] {
|
|
143
|
-
width: 100%;
|
|
144
|
-
height: 100%;
|
|
145
|
-
position: relative;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.box[data-v-87a0d832] {
|
|
149
|
-
display: flex;
|
|
150
|
-
justify-content: center;
|
|
151
|
-
align-items: center;
|
|
152
|
-
height: 100vh;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
.goods-card[data-v-87a0d832] {
|
|
156
|
-
display: flex;
|
|
157
|
-
flex-direction: column;
|
|
158
|
-
justify-content: flex-start;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
.card-desc[data-v-87a0d832] {
|
|
162
|
-
text-align: left;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.button-area[data-v-87a0d832] {
|
|
166
|
-
display: flex;
|
|
167
|
-
justify-content: space-between;
|
|
168
|
-
align-items: center;
|
|
169
|
-
top: 20px;
|
|
170
|
-
margin-top: 5%;
|
|
171
|
-
margin-left: 5%;
|
|
172
|
-
margin-right: 5%;
|
|
173
|
-
margin-bottom: 5%;
|
|
174
|
-
position: sticky;
|
|
175
|
-
z-index: 1000;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
.button-type[data-v-87a0d832] {
|
|
179
|
-
font-size: 14px;
|
|
180
|
-
border-radius: 10px;
|
|
181
|
-
font-family: "阿里巴巴普惠体Regular";
|
|
182
|
-
position: relative;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
.slot-left[data-v-87a0d832] {
|
|
186
|
-
margin-top: 20px;
|
|
187
|
-
margin-left: 20px;
|
|
188
|
-
width: 100%;
|
|
189
|
-
height: 60px;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
.slot-right[data-v-87a0d832] {
|
|
193
|
-
margin-top: 20px;
|
|
194
|
-
width: 100%;
|
|
195
|
-
height: 60px;
|
|
196
|
-
border-radius: 10px;
|
|
197
|
-
color: white;
|
|
198
|
-
font-size: 16px;
|
|
199
|
-
font-weight: 600;
|
|
200
|
-
font-family: "阿里巴巴普惠体Light";
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
.rowContent[data-v-1b695265] {
|
|
204
|
-
display: flex;
|
|
205
|
-
flex-direction: row;
|
|
206
|
-
justify-content: center;
|
|
207
|
-
width: 100%;
|
|
208
|
-
margin: 0;
|
|
209
|
-
padding: 0;
|
|
210
|
-
}
|
|
211
|
-
.rowContent[data-v-1b695265] .mainContent[data-v-1b695265] {
|
|
212
|
-
width: 100%;
|
|
213
|
-
display: flex;
|
|
214
|
-
flex-direction: column;
|
|
215
|
-
justify-content: start;
|
|
216
|
-
overflow: auto;
|
|
217
|
-
border-radius: 15px;
|
|
218
|
-
background-color: #ffffff;
|
|
219
|
-
}
|
|
220
|
-
.rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .singleRow[data-v-1b695265] {
|
|
221
|
-
display: flex;
|
|
222
|
-
flex-direction: column;
|
|
223
|
-
justify-content: flex-start;
|
|
224
|
-
padding: 0px 0;
|
|
225
|
-
border-bottom: 1px solid rgba(204, 204, 204, 0.4666666667);
|
|
226
|
-
}
|
|
227
|
-
.rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .colDesc[data-v-1b695265] {
|
|
228
|
-
display: flex;
|
|
229
|
-
flex-direction: row;
|
|
230
|
-
justify-content: flex-start;
|
|
231
|
-
align-items: center;
|
|
232
|
-
font-size: 14px;
|
|
233
|
-
font-family: "阿里巴巴普惠体Regular";
|
|
234
|
-
padding-left: 4px;
|
|
235
|
-
}
|
|
236
|
-
.rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .colDesc[data-v-1b695265] .required[data-v-1b695265] {
|
|
237
|
-
content: "*";
|
|
238
|
-
display: contents;
|
|
239
|
-
color: red;
|
|
240
|
-
}
|
|
241
|
-
.rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .colData[data-v-1b695265] {
|
|
242
|
-
font-size: 14px;
|
|
243
|
-
font-family: "阿里巴巴普惠体Regular";
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
.mainTitle[data-v-1b695265] {
|
|
247
|
-
display: flex;
|
|
248
|
-
flex-direction: column;
|
|
249
|
-
justify-content: center;
|
|
250
|
-
align-items: center;
|
|
251
|
-
font-family: "阿里巴巴普惠体Bold";
|
|
252
|
-
font-size: 23px;
|
|
253
|
-
color: #548cf6;
|
|
254
|
-
margin: 10px;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
[data-v-1b695265] .checkError {
|
|
258
|
-
border-bottom: 1px solid red;
|
|
259
|
-
animation: blink-1b695265 2s linear infinite;
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
@keyframes blink-1b695265 {
|
|
263
|
-
0% {
|
|
264
|
-
border-color: red;
|
|
265
|
-
}
|
|
266
|
-
50% {
|
|
267
|
-
border-color: transparent;
|
|
268
|
-
}
|
|
269
|
-
100% {
|
|
270
|
-
border-color: red;
|
|
271
|
-
}
|
|
272
|
-
}
|
|
273
2
|
.swiperButton[data-v-35c7b3ce] {
|
|
274
3
|
height: 100%;
|
|
275
4
|
}
|
|
@@ -488,150 +217,413 @@
|
|
|
488
217
|
align-items: center;
|
|
489
218
|
width: 15%;
|
|
490
219
|
}
|
|
491
|
-
.rowShadowCard[data-v-35c7b3ce] .rightArea[data-v-35c7b3ce] {
|
|
220
|
+
.rowShadowCard[data-v-35c7b3ce] .rightArea[data-v-35c7b3ce] {
|
|
221
|
+
display: flex;
|
|
222
|
+
flex-direction: column;
|
|
223
|
+
justify-content: center;
|
|
224
|
+
align-items: center;
|
|
225
|
+
width: 10%;
|
|
226
|
+
}
|
|
227
|
+
.rowShadowCard[data-v-35c7b3ce] .mainContent[data-v-35c7b3ce] {
|
|
228
|
+
width: 100%;
|
|
229
|
+
display: flex;
|
|
230
|
+
flex-direction: column;
|
|
231
|
+
justify-content: start;
|
|
232
|
+
overflow: auto;
|
|
233
|
+
}
|
|
234
|
+
.rowShadowCard[data-v-35c7b3ce] .singleRow[data-v-35c7b3ce] {
|
|
235
|
+
display: flex;
|
|
236
|
+
flex-direction: column;
|
|
237
|
+
justify-content: flex-start;
|
|
238
|
+
padding: 3px 0;
|
|
239
|
+
word-wrap: break-word;
|
|
240
|
+
font-size: 15px;
|
|
241
|
+
}
|
|
242
|
+
.rowShadowCard[data-v-35c7b3ce] .colDesc[data-v-35c7b3ce] {
|
|
243
|
+
color: #a7a7a7;
|
|
244
|
+
font-family: "阿里巴巴普惠体Regular";
|
|
245
|
+
padding-left: 4px;
|
|
246
|
+
}
|
|
247
|
+
.rowShadowCard[data-v-35c7b3ce] .colData[data-v-35c7b3ce] {
|
|
248
|
+
color: #a7a7a7;
|
|
249
|
+
font-family: "阿里巴巴普惠体Regular";
|
|
250
|
+
width: 70%;
|
|
251
|
+
}
|
|
252
|
+
.rowShadowCard[data-v-35c7b3ce] .colDataDesc[data-v-35c7b3ce] {
|
|
253
|
+
color: #a7a7a7;
|
|
254
|
+
font-size: 12px;
|
|
255
|
+
font-family: "阿里巴巴普惠体Regular";
|
|
256
|
+
word-break: break-all;
|
|
257
|
+
width: 100%;
|
|
258
|
+
padding: 4px 4px 0 8px;
|
|
259
|
+
}
|
|
260
|
+
.rowShadowCard[data-v-35c7b3ce] .textPosition[data-v-35c7b3ce] {
|
|
261
|
+
float: right;
|
|
262
|
+
padding-right: 4px;
|
|
263
|
+
font-size: 12px;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
/*阴影Card结束*/
|
|
267
|
+
.mainTitle[data-v-35c7b3ce] {
|
|
268
|
+
/* display: flex;
|
|
269
|
+
flex-direction: column;
|
|
270
|
+
justify-content: center;
|
|
271
|
+
align-items: center;*/
|
|
272
|
+
font-family: "阿里巴巴普惠体Regular";
|
|
273
|
+
width: 100%;
|
|
274
|
+
text-align: center;
|
|
275
|
+
background-color: #3a7af9;
|
|
276
|
+
color: #eaf1f3;
|
|
277
|
+
font-size: 16px;
|
|
278
|
+
height: 24px;
|
|
279
|
+
line-height: 24px;
|
|
280
|
+
margin: 0 auto;
|
|
281
|
+
padding: 0;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.selected[data-v-35c7b3ce] {
|
|
285
|
+
background-color: rgba(228, 232, 245, 0.7);
|
|
286
|
+
border-radius: 10px;
|
|
287
|
+
box-shadow: 0px 2px 3px #cccccc;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
nav[data-v-35c7b3ce] {
|
|
291
|
+
text-align: center;
|
|
292
|
+
background-color: #0567b6;
|
|
293
|
+
color: white;
|
|
294
|
+
padding: 10px;
|
|
295
|
+
font-weight: bold;
|
|
296
|
+
position: sticky;
|
|
297
|
+
top: 0;
|
|
298
|
+
z-index: 10;
|
|
299
|
+
}
|
|
300
|
+
nav[data-v-35c7b3ce] .jh-button[data-v-35c7b3ce] {
|
|
301
|
+
height: auto;
|
|
302
|
+
left: 0;
|
|
303
|
+
position: absolute;
|
|
304
|
+
margin: 0;
|
|
305
|
+
border: none;
|
|
306
|
+
background: none;
|
|
307
|
+
color: white !important;
|
|
308
|
+
font-size: 20px !important;
|
|
309
|
+
margin-left: 3px !important;
|
|
310
|
+
margin-top: -4px !important;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.page-footer[data-v-35c7b3ce] {
|
|
314
|
+
position: fixed;
|
|
315
|
+
bottom: 0;
|
|
316
|
+
width: 100%;
|
|
317
|
+
height: 40px;
|
|
318
|
+
z-index: 500;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.outer-wrapper[data-v-35c7b3ce] {
|
|
322
|
+
overflow: hidden; /* 防止外部滚动 */
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.content-wrapper[data-v-35c7b3ce] {
|
|
326
|
+
height: calc(100vh - 35px); /* 为 <van-collapse> 设置固定高度 */
|
|
327
|
+
overflow-y: auto;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
[data-v-35c7b3ce] div.van-checkbox__icon {
|
|
331
|
+
font-size: 26px;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
/* 隐藏原生复选框样式 */
|
|
335
|
+
.van-checkbox input[data-v-35c7b3ce] {
|
|
336
|
+
display: none;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
/* 自定义复选框的样式 */
|
|
340
|
+
.van-checkbox__label[data-v-35c7b3ce] {
|
|
341
|
+
position: relative;
|
|
342
|
+
cursor: pointer;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
/* 自定义勾选后的图标样式 */
|
|
346
|
+
.van-checkbox__mark[data-v-35c7b3ce] {
|
|
347
|
+
position: absolute;
|
|
348
|
+
top: 0;
|
|
349
|
+
left: 0;
|
|
350
|
+
width: 100%;
|
|
351
|
+
height: 100%;
|
|
352
|
+
background-color: #1989fa; /* 勾选后的颜色 */
|
|
353
|
+
mask-image: none;
|
|
354
|
+
-webkit-mask-image: none;
|
|
355
|
+
color: #fff; /* 勾选后的文字颜色 */
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.rowContent[data-v-1b695265] {
|
|
359
|
+
display: flex;
|
|
360
|
+
flex-direction: row;
|
|
361
|
+
justify-content: center;
|
|
362
|
+
width: 100%;
|
|
363
|
+
margin: 0;
|
|
364
|
+
padding: 0;
|
|
365
|
+
}
|
|
366
|
+
.rowContent[data-v-1b695265] .mainContent[data-v-1b695265] {
|
|
367
|
+
width: 100%;
|
|
368
|
+
display: flex;
|
|
369
|
+
flex-direction: column;
|
|
370
|
+
justify-content: start;
|
|
371
|
+
overflow: auto;
|
|
372
|
+
border-radius: 15px;
|
|
373
|
+
background-color: #ffffff;
|
|
374
|
+
}
|
|
375
|
+
.rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .singleRow[data-v-1b695265] {
|
|
376
|
+
display: flex;
|
|
377
|
+
flex-direction: column;
|
|
378
|
+
justify-content: flex-start;
|
|
379
|
+
padding: 0px 0;
|
|
380
|
+
border-bottom: 1px solid rgba(204, 204, 204, 0.4666666667);
|
|
381
|
+
}
|
|
382
|
+
.rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .colDesc[data-v-1b695265] {
|
|
383
|
+
display: flex;
|
|
384
|
+
flex-direction: row;
|
|
385
|
+
justify-content: flex-start;
|
|
386
|
+
align-items: center;
|
|
387
|
+
font-size: 14px;
|
|
388
|
+
font-family: "阿里巴巴普惠体Regular";
|
|
389
|
+
padding-left: 4px;
|
|
390
|
+
}
|
|
391
|
+
.rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .colDesc[data-v-1b695265] .required[data-v-1b695265] {
|
|
392
|
+
content: "*";
|
|
393
|
+
display: contents;
|
|
394
|
+
color: red;
|
|
395
|
+
}
|
|
396
|
+
.rowContent[data-v-1b695265] .mainContent[data-v-1b695265] .colData[data-v-1b695265] {
|
|
397
|
+
font-size: 14px;
|
|
398
|
+
font-family: "阿里巴巴普惠体Regular";
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.mainTitle[data-v-1b695265] {
|
|
402
|
+
display: flex;
|
|
403
|
+
flex-direction: column;
|
|
404
|
+
justify-content: center;
|
|
405
|
+
align-items: center;
|
|
406
|
+
font-family: "阿里巴巴普惠体Bold";
|
|
407
|
+
font-size: 23px;
|
|
408
|
+
color: #548cf6;
|
|
409
|
+
margin: 10px;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
[data-v-1b695265] .checkError {
|
|
413
|
+
border-bottom: 1px solid red;
|
|
414
|
+
animation: blink-1b695265 2s linear infinite;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
@keyframes blink-1b695265 {
|
|
418
|
+
0% {
|
|
419
|
+
border-color: red;
|
|
420
|
+
}
|
|
421
|
+
50% {
|
|
422
|
+
border-color: transparent;
|
|
423
|
+
}
|
|
424
|
+
100% {
|
|
425
|
+
border-color: red;
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
.baseStyle[data-v-a440e92e] {
|
|
429
|
+
width: 99%;
|
|
430
|
+
height: 100%;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
[data-v-a440e92e] .ag-header-group-cell {
|
|
434
|
+
border-right-style: solid;
|
|
435
|
+
border-right-width: 1px;
|
|
436
|
+
border-right-color: #cecece;
|
|
437
|
+
display: flex;
|
|
438
|
+
justify-content: center;
|
|
439
|
+
align-items: center;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
[data-v-a440e92e] .ag-header-cell-label {
|
|
492
443
|
display: flex;
|
|
493
|
-
flex-direction: column;
|
|
494
444
|
justify-content: center;
|
|
495
445
|
align-items: center;
|
|
496
|
-
width: 10%;
|
|
497
446
|
}
|
|
498
|
-
|
|
499
|
-
|
|
447
|
+
|
|
448
|
+
[data-v-a440e92e] .ag-root-wrapper {
|
|
449
|
+
cursor: default;
|
|
450
|
+
position: relative;
|
|
500
451
|
display: flex;
|
|
501
452
|
flex-direction: column;
|
|
502
|
-
|
|
503
|
-
|
|
453
|
+
overflow: hidden;
|
|
454
|
+
white-space: normal;
|
|
455
|
+
border: 1px solid #cecece !important; /* 设置最外边的边框 */
|
|
456
|
+
margin-right: 2px !important;
|
|
457
|
+
margin-left: 2px !important;
|
|
458
|
+
margin-bottom: 60px !important;
|
|
504
459
|
}
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
justify-content:
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
font-size: 15px;
|
|
460
|
+
|
|
461
|
+
[data-v-a440e92e] .ag-header-cell:first-child .ag-header-cell-label {
|
|
462
|
+
display: flex !important;
|
|
463
|
+
justify-content: center !important;
|
|
464
|
+
align-items: center !important;
|
|
465
|
+
text-align: center !important;
|
|
512
466
|
}
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
467
|
+
|
|
468
|
+
.ag-theme-alpine[data-v-a440e92e] {
|
|
469
|
+
/* and between columns */
|
|
470
|
+
--ag-cell-horizontal-border: solid #cecece;
|
|
471
|
+
--ag-header-cell-horizontal-border: solid #cecece;
|
|
472
|
+
--ag-header-foreground-color: #3a7af9;
|
|
517
473
|
}
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
width:
|
|
474
|
+
|
|
475
|
+
[data-v-a440e92e] .ag-header-cell {
|
|
476
|
+
border-right-style: solid;
|
|
477
|
+
border-right-width: 1px;
|
|
478
|
+
border-right-color: #cecece; /* 深灰色底边框 */
|
|
522
479
|
}
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
word-break: break-all;
|
|
528
|
-
width: 100%;
|
|
529
|
-
padding: 4px 4px 0 8px;
|
|
480
|
+
|
|
481
|
+
/* 如果你想要更具体的样式,比如只针对第一个表头列 */
|
|
482
|
+
.ag-header-cell[data-v-a440e92e]:first-child {
|
|
483
|
+
border-left: none; /* 移除左侧边框,如果需要的话 */
|
|
530
484
|
}
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
485
|
+
|
|
486
|
+
/* 或者针对最后一列 */
|
|
487
|
+
.ag-header-cell[data-v-a440e92e]:last-child {
|
|
488
|
+
border-right: none; /* 移除右侧边框,如果需要的话 */
|
|
535
489
|
}
|
|
536
490
|
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
flex-direction: column;
|
|
541
|
-
justify-content: center;
|
|
542
|
-
align-items: center;*/
|
|
543
|
-
font-family: "阿里巴巴普惠体Regular";
|
|
544
|
-
width: 100%;
|
|
545
|
-
text-align: center;
|
|
546
|
-
background-color: #3a7af9;
|
|
547
|
-
color: #eaf1f3;
|
|
548
|
-
font-size: 16px;
|
|
549
|
-
height: 24px;
|
|
550
|
-
line-height: 24px;
|
|
551
|
-
margin: 0 auto;
|
|
552
|
-
padding: 0;
|
|
491
|
+
/* 选中行的样式 */
|
|
492
|
+
[data-v-a440e92e] .ag-row-selected::before {
|
|
493
|
+
background-color: rgba(183, 249, 177, 0.5803921569);
|
|
553
494
|
}
|
|
554
495
|
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
496
|
+
/* 选中焦点行的样式 */
|
|
497
|
+
[data-v-a440e92e] .ag-row-hover.ag-row-selected::before {
|
|
498
|
+
background-color: rgba(183, 249, 177, 0.5803921569);
|
|
499
|
+
background-image: none;
|
|
559
500
|
}
|
|
560
501
|
|
|
561
|
-
|
|
502
|
+
/* 表头的样式 */
|
|
503
|
+
[data-v-a440e92e] .ag-header {
|
|
504
|
+
background-color: #dbefff;
|
|
562
505
|
text-align: center;
|
|
563
|
-
background-color: #0567b6;
|
|
564
|
-
color: white;
|
|
565
|
-
padding: 10px;
|
|
566
|
-
font-weight: bold;
|
|
567
|
-
position: sticky;
|
|
568
|
-
top: 0;
|
|
569
|
-
z-index: 10;
|
|
570
|
-
}
|
|
571
|
-
nav[data-v-35c7b3ce] .jh-button[data-v-35c7b3ce] {
|
|
572
|
-
height: auto;
|
|
573
|
-
left: 0;
|
|
574
|
-
position: absolute;
|
|
575
|
-
margin: 0;
|
|
576
|
-
border: none;
|
|
577
|
-
background: none;
|
|
578
|
-
color: white !important;
|
|
579
|
-
font-size: 20px !important;
|
|
580
|
-
margin-left: 3px !important;
|
|
581
|
-
margin-top: -4px !important;
|
|
582
506
|
}
|
|
583
507
|
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
bottom: 0;
|
|
587
|
-
width: 100%;
|
|
588
|
-
height: 40px;
|
|
589
|
-
z-index: 500;
|
|
508
|
+
[data-v-a440e92e] .ag-checkbox-input-wrapper.ag-disabled {
|
|
509
|
+
opacity: 1;
|
|
590
510
|
}
|
|
591
511
|
|
|
592
|
-
|
|
593
|
-
|
|
512
|
+
/* 默认行的背景色 */
|
|
513
|
+
[data-v-a440e92e] .ag-row-odd {
|
|
514
|
+
background-color: aliceblue;
|
|
594
515
|
}
|
|
595
516
|
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
517
|
+
/* 取消选中行的样式 */
|
|
518
|
+
[data-v-a440e92e] .ag-row-hover:not(.ag-row-selected)::before {
|
|
519
|
+
background-color: #ecf0f1;
|
|
599
520
|
}
|
|
600
521
|
|
|
601
|
-
[data-v-
|
|
602
|
-
|
|
522
|
+
[data-v-a440e92e] .ag-header-cell-label {
|
|
523
|
+
white-space: pre-line !important; /* 强制允许换行 */
|
|
603
524
|
}
|
|
604
525
|
|
|
605
|
-
/*
|
|
606
|
-
|
|
607
|
-
|
|
526
|
+
/*
|
|
527
|
+
|
|
528
|
+
:deep(.ag-header-cell.ag-header-cell-wrap-text.ag-header-cell-auto-height.ag-focus-managed) {
|
|
529
|
+
padding: 0 4px 0 4px !important;
|
|
530
|
+
}
|
|
531
|
+
:deep(.ag-cell-value.ag-cell-not-inline-editing.ag-cell-normal-height) {
|
|
532
|
+
padding: 0 3px 0 3px !important;
|
|
608
533
|
}
|
|
609
534
|
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
535
|
+
:deep(.ag-selection-checkbox) {
|
|
536
|
+
margin: 0 auto!important;
|
|
537
|
+
text-align: center;
|
|
538
|
+
|
|
539
|
+
}
|
|
540
|
+
.centered-checkbox .ag-cell-wrapper {
|
|
541
|
+
padding:0 3px;
|
|
542
|
+
display: flex;
|
|
543
|
+
justify-content: center;
|
|
544
|
+
align-items: center;
|
|
614
545
|
}
|
|
615
546
|
|
|
616
|
-
|
|
617
|
-
|
|
547
|
+
.centered-header .ag-header-cell-label {
|
|
548
|
+
padding:0 4px;
|
|
549
|
+
display: flex;
|
|
550
|
+
justify-content: center;
|
|
551
|
+
}
|
|
552
|
+
:deep(.ag-input-field-input.ag-checkbox-input){
|
|
553
|
+
text-align: center;
|
|
554
|
+
display: flex;
|
|
555
|
+
justify-content: center;
|
|
556
|
+
}*/
|
|
557
|
+
.loading-overlay[data-v-a440e92e] {
|
|
618
558
|
position: absolute;
|
|
619
559
|
top: 0;
|
|
620
560
|
left: 0;
|
|
561
|
+
right: 0;
|
|
562
|
+
bottom: 0;
|
|
563
|
+
background-color: rgba(255, 255, 255, 0.5);
|
|
564
|
+
display: flex;
|
|
565
|
+
z-index: 1000;
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.container[data-v-87a0d832] {
|
|
621
569
|
width: 100%;
|
|
622
570
|
height: 100%;
|
|
623
|
-
|
|
624
|
-
mask-image: none;
|
|
625
|
-
-webkit-mask-image: none;
|
|
626
|
-
color: #fff; /* 勾选后的文字颜色 */
|
|
571
|
+
position: relative;
|
|
627
572
|
}
|
|
628
573
|
|
|
629
|
-
[data-v-
|
|
630
|
-
|
|
574
|
+
.box[data-v-87a0d832] {
|
|
575
|
+
display: flex;
|
|
576
|
+
justify-content: center;
|
|
577
|
+
align-items: center;
|
|
578
|
+
height: 100vh;
|
|
631
579
|
}
|
|
632
580
|
|
|
633
|
-
[data-v-
|
|
634
|
-
|
|
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";
|
|
635
627
|
}
|
|
636
628
|
|
|
637
629
|
[data-v-7351fe97] .van-popup {
|
|
@@ -661,4 +653,12 @@ nav[data-v-35c7b3ce] .jh-button[data-v-35c7b3ce] {
|
|
|
661
653
|
overflow: hidden;
|
|
662
654
|
overflow-y: auto;
|
|
663
655
|
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
|
}
|