@baosight/erm 1.6.7 → 1.6.9
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 +2 -2
- package/lib/i18n/kendo.messages.en-US.js +14 -14
- package/lib/i18n/kendo.messages.zh-CN.js +21 -21
- package/lib/i18n/kendo.messages.zh-HK.js +28 -28
- package/lib/img/404.4657356e.png +0 -0
- package/lib/img/content_bg.8d586127.png +0 -0
- package/lib/index.css +1 -1
- package/lib/index.esm.css +247 -247
- package/lib/index.esm.js +1 -1
- package/lib/themes/ef-style-default.css +1 -1
- package/lib/themes/ef-style-ghostShark.css +1 -1
- package/package.json +81 -81
- package/CHANGELOG.md +0 -0
package/lib/index.esm.css
CHANGED
|
@@ -1,4 +1,214 @@
|
|
|
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
|
+
.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
|
+
}
|
|
2
212
|
.swiperButton[data-v-35c7b3ce] {
|
|
3
213
|
height: 100%;
|
|
4
214
|
}
|
|
@@ -12,28 +222,28 @@
|
|
|
12
222
|
padding: 10px 0;
|
|
13
223
|
border-bottom: 1px solid rgba(204, 204, 204, 0.4666666667);
|
|
14
224
|
}
|
|
15
|
-
.rowContent
|
|
225
|
+
.rowContent .leftArea[data-v-35c7b3ce] {
|
|
16
226
|
display: flex;
|
|
17
227
|
flex-direction: column;
|
|
18
228
|
justify-content: center;
|
|
19
229
|
align-items: center;
|
|
20
230
|
width: 15%;
|
|
21
231
|
}
|
|
22
|
-
.rowContent
|
|
232
|
+
.rowContent .rightArea[data-v-35c7b3ce] {
|
|
23
233
|
display: flex;
|
|
24
234
|
flex-direction: column;
|
|
25
235
|
justify-content: center;
|
|
26
236
|
align-items: center;
|
|
27
237
|
width: 15%;
|
|
28
238
|
}
|
|
29
|
-
.rowContent
|
|
239
|
+
.rowContent .mainContent[data-v-35c7b3ce] {
|
|
30
240
|
width: 100%;
|
|
31
241
|
display: flex;
|
|
32
242
|
flex-direction: column;
|
|
33
243
|
justify-content: start;
|
|
34
244
|
overflow: auto;
|
|
35
245
|
}
|
|
36
|
-
.rowContent
|
|
246
|
+
.rowContent .singleRow[data-v-35c7b3ce] {
|
|
37
247
|
display: flex;
|
|
38
248
|
flex-direction: column;
|
|
39
249
|
justify-content: flex-start;
|
|
@@ -41,18 +251,18 @@
|
|
|
41
251
|
word-wrap: break-word;
|
|
42
252
|
font-size: 15px;
|
|
43
253
|
}
|
|
44
|
-
.rowContent
|
|
254
|
+
.rowContent .colDesc[data-v-35c7b3ce] {
|
|
45
255
|
font-size: 15px;
|
|
46
256
|
color: #a7a7a7;
|
|
47
257
|
font-family: "阿里巴巴普惠体Regular";
|
|
48
258
|
padding-left: 8px;
|
|
49
259
|
}
|
|
50
|
-
.rowContent
|
|
260
|
+
.rowContent .colData[data-v-35c7b3ce] {
|
|
51
261
|
font-size: 15px;
|
|
52
262
|
color: #a7a7a7;
|
|
53
263
|
font-family: "阿里巴巴普惠体Regular";
|
|
54
264
|
}
|
|
55
|
-
.rowContent
|
|
265
|
+
.rowContent .colDataDesc[data-v-35c7b3ce] {
|
|
56
266
|
color: #a7a7a7;
|
|
57
267
|
font-size: 12px;
|
|
58
268
|
font-family: "阿里巴巴普惠体Regular";
|
|
@@ -60,7 +270,7 @@
|
|
|
60
270
|
word-break: break-all;
|
|
61
271
|
padding: 4px 0 4px 8px;
|
|
62
272
|
}
|
|
63
|
-
.rowContent
|
|
273
|
+
.rowContent .textPosition[data-v-35c7b3ce] {
|
|
64
274
|
font-size: 12px;
|
|
65
275
|
}
|
|
66
276
|
|
|
@@ -78,28 +288,28 @@
|
|
|
78
288
|
background-size: 100% 100%;
|
|
79
289
|
padding-left: 20px;
|
|
80
290
|
}
|
|
81
|
-
.rowContentCard
|
|
291
|
+
.rowContentCard .leftArea[data-v-35c7b3ce] {
|
|
82
292
|
display: flex;
|
|
83
293
|
flex-direction: column;
|
|
84
294
|
justify-content: center;
|
|
85
295
|
align-items: center;
|
|
86
296
|
width: 15%;
|
|
87
297
|
}
|
|
88
|
-
.rowContentCard
|
|
298
|
+
.rowContentCard .rightArea[data-v-35c7b3ce] {
|
|
89
299
|
display: flex;
|
|
90
300
|
flex-direction: column;
|
|
91
301
|
justify-content: center;
|
|
92
302
|
align-items: center;
|
|
93
303
|
width: 15%;
|
|
94
304
|
}
|
|
95
|
-
.rowContentCard
|
|
305
|
+
.rowContentCard .mainContent[data-v-35c7b3ce] {
|
|
96
306
|
width: 100%;
|
|
97
307
|
display: flex;
|
|
98
308
|
flex-direction: column;
|
|
99
309
|
justify-content: start;
|
|
100
310
|
overflow: auto;
|
|
101
311
|
}
|
|
102
|
-
.rowContentCard
|
|
312
|
+
.rowContentCard .singleRow[data-v-35c7b3ce] {
|
|
103
313
|
display: flex;
|
|
104
314
|
flex-direction: column;
|
|
105
315
|
justify-content: flex-start;
|
|
@@ -107,17 +317,17 @@
|
|
|
107
317
|
word-wrap: break-word;
|
|
108
318
|
font-size: 15px;
|
|
109
319
|
}
|
|
110
|
-
.rowContentCard
|
|
320
|
+
.rowContentCard .colDesc[data-v-35c7b3ce] {
|
|
111
321
|
color: #a7a7a7;
|
|
112
322
|
font-family: "阿里巴巴普惠体Regular";
|
|
113
323
|
padding-left: 4px;
|
|
114
324
|
}
|
|
115
|
-
.rowContentCard
|
|
325
|
+
.rowContentCard .colData[data-v-35c7b3ce] {
|
|
116
326
|
color: #a7a7a7;
|
|
117
327
|
font-family: "阿里巴巴普惠体Regular";
|
|
118
328
|
width: 70%;
|
|
119
329
|
}
|
|
120
|
-
.rowContentCard
|
|
330
|
+
.rowContentCard .colDataDesc[data-v-35c7b3ce] {
|
|
121
331
|
color: #a7a7a7;
|
|
122
332
|
font-size: 12px;
|
|
123
333
|
font-family: "阿里巴巴普惠体Regular";
|
|
@@ -125,7 +335,7 @@
|
|
|
125
335
|
width: 100%;
|
|
126
336
|
padding: 4px 0 4px 8px;
|
|
127
337
|
}
|
|
128
|
-
.rowContentCard
|
|
338
|
+
.rowContentCard .textPosition[data-v-35c7b3ce] {
|
|
129
339
|
font-size: 12px;
|
|
130
340
|
}
|
|
131
341
|
|
|
@@ -138,34 +348,34 @@
|
|
|
138
348
|
padding: 10px 0;
|
|
139
349
|
border-bottom: 1px solid rgba(204, 204, 204, 0.4666666667);
|
|
140
350
|
}
|
|
141
|
-
.rowContent2
|
|
351
|
+
.rowContent2 .leftArea[data-v-35c7b3ce] {
|
|
142
352
|
display: flex;
|
|
143
353
|
flex-direction: column;
|
|
144
354
|
justify-content: center;
|
|
145
355
|
align-items: center;
|
|
146
356
|
width: 15%;
|
|
147
357
|
}
|
|
148
|
-
.rowContent2
|
|
358
|
+
.rowContent2 .textPosition[data-v-35c7b3ce] {
|
|
149
359
|
font-size: 12px;
|
|
150
360
|
float: right;
|
|
151
361
|
padding-right: 10px;
|
|
152
362
|
color: black;
|
|
153
363
|
}
|
|
154
|
-
.rowContent2
|
|
364
|
+
.rowContent2 .rightArea[data-v-35c7b3ce] {
|
|
155
365
|
display: flex;
|
|
156
366
|
flex-direction: column;
|
|
157
367
|
justify-content: center;
|
|
158
368
|
align-items: center;
|
|
159
369
|
width: 15%;
|
|
160
370
|
}
|
|
161
|
-
.rowContent2
|
|
371
|
+
.rowContent2 .mainContent[data-v-35c7b3ce] {
|
|
162
372
|
width: 100%;
|
|
163
373
|
display: flex;
|
|
164
374
|
flex-direction: column;
|
|
165
375
|
justify-content: start;
|
|
166
376
|
overflow: auto;
|
|
167
377
|
}
|
|
168
|
-
.rowContent2
|
|
378
|
+
.rowContent2 .singleRow[data-v-35c7b3ce] {
|
|
169
379
|
display: flex;
|
|
170
380
|
flex-direction: column;
|
|
171
381
|
justify-content: flex-start;
|
|
@@ -173,18 +383,18 @@
|
|
|
173
383
|
word-wrap: break-word;
|
|
174
384
|
font-size: 15px;
|
|
175
385
|
}
|
|
176
|
-
.rowContent2
|
|
386
|
+
.rowContent2 .colDesc[data-v-35c7b3ce] {
|
|
177
387
|
font-size: 15px;
|
|
178
388
|
color: #a7a7a7;
|
|
179
389
|
font-family: "阿里巴巴普惠体Regular";
|
|
180
390
|
padding-left: 8px;
|
|
181
391
|
}
|
|
182
|
-
.rowContent2
|
|
392
|
+
.rowContent2 .colData[data-v-35c7b3ce] {
|
|
183
393
|
font-size: 15px;
|
|
184
394
|
color: #a7a7a7;
|
|
185
395
|
font-family: "阿里巴巴普惠体Regular";
|
|
186
396
|
}
|
|
187
|
-
.rowContent2
|
|
397
|
+
.rowContent2 .colDataDesc[data-v-35c7b3ce] {
|
|
188
398
|
color: #a7a7a7;
|
|
189
399
|
font-size: 12px;
|
|
190
400
|
font-family: "阿里巴巴普惠体Regular";
|
|
@@ -210,28 +420,28 @@
|
|
|
210
420
|
padding-bottom: 4px;
|
|
211
421
|
background: #fff;
|
|
212
422
|
}
|
|
213
|
-
.rowShadowCard
|
|
423
|
+
.rowShadowCard .leftArea[data-v-35c7b3ce] {
|
|
214
424
|
display: flex;
|
|
215
425
|
flex-direction: column;
|
|
216
426
|
justify-content: center;
|
|
217
427
|
align-items: center;
|
|
218
428
|
width: 15%;
|
|
219
429
|
}
|
|
220
|
-
.rowShadowCard
|
|
430
|
+
.rowShadowCard .rightArea[data-v-35c7b3ce] {
|
|
221
431
|
display: flex;
|
|
222
432
|
flex-direction: column;
|
|
223
433
|
justify-content: center;
|
|
224
434
|
align-items: center;
|
|
225
435
|
width: 10%;
|
|
226
436
|
}
|
|
227
|
-
.rowShadowCard
|
|
437
|
+
.rowShadowCard .mainContent[data-v-35c7b3ce] {
|
|
228
438
|
width: 100%;
|
|
229
439
|
display: flex;
|
|
230
440
|
flex-direction: column;
|
|
231
441
|
justify-content: start;
|
|
232
442
|
overflow: auto;
|
|
233
443
|
}
|
|
234
|
-
.rowShadowCard
|
|
444
|
+
.rowShadowCard .singleRow[data-v-35c7b3ce] {
|
|
235
445
|
display: flex;
|
|
236
446
|
flex-direction: column;
|
|
237
447
|
justify-content: flex-start;
|
|
@@ -239,17 +449,17 @@
|
|
|
239
449
|
word-wrap: break-word;
|
|
240
450
|
font-size: 15px;
|
|
241
451
|
}
|
|
242
|
-
.rowShadowCard
|
|
452
|
+
.rowShadowCard .colDesc[data-v-35c7b3ce] {
|
|
243
453
|
color: #a7a7a7;
|
|
244
454
|
font-family: "阿里巴巴普惠体Regular";
|
|
245
455
|
padding-left: 4px;
|
|
246
456
|
}
|
|
247
|
-
.rowShadowCard
|
|
457
|
+
.rowShadowCard .colData[data-v-35c7b3ce] {
|
|
248
458
|
color: #a7a7a7;
|
|
249
459
|
font-family: "阿里巴巴普惠体Regular";
|
|
250
460
|
width: 70%;
|
|
251
461
|
}
|
|
252
|
-
.rowShadowCard
|
|
462
|
+
.rowShadowCard .colDataDesc[data-v-35c7b3ce] {
|
|
253
463
|
color: #a7a7a7;
|
|
254
464
|
font-size: 12px;
|
|
255
465
|
font-family: "阿里巴巴普惠体Regular";
|
|
@@ -257,7 +467,7 @@
|
|
|
257
467
|
width: 100%;
|
|
258
468
|
padding: 4px 4px 0 8px;
|
|
259
469
|
}
|
|
260
|
-
.rowShadowCard
|
|
470
|
+
.rowShadowCard .textPosition[data-v-35c7b3ce] {
|
|
261
471
|
float: right;
|
|
262
472
|
padding-right: 4px;
|
|
263
473
|
font-size: 12px;
|
|
@@ -297,7 +507,7 @@ nav[data-v-35c7b3ce] {
|
|
|
297
507
|
top: 0;
|
|
298
508
|
z-index: 10;
|
|
299
509
|
}
|
|
300
|
-
nav
|
|
510
|
+
nav .jh-button[data-v-35c7b3ce] {
|
|
301
511
|
height: auto;
|
|
302
512
|
left: 0;
|
|
303
513
|
position: absolute;
|
|
@@ -355,216 +565,6 @@ nav[data-v-35c7b3ce] .jh-button[data-v-35c7b3ce] {
|
|
|
355
565
|
color: #fff; /* 勾选后的文字颜色 */
|
|
356
566
|
}
|
|
357
567
|
|
|
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 {
|
|
443
|
-
display: flex;
|
|
444
|
-
justify-content: center;
|
|
445
|
-
align-items: center;
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
[data-v-a440e92e] .ag-root-wrapper {
|
|
449
|
-
cursor: default;
|
|
450
|
-
position: relative;
|
|
451
|
-
display: flex;
|
|
452
|
-
flex-direction: column;
|
|
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;
|
|
459
|
-
}
|
|
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;
|
|
466
|
-
}
|
|
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;
|
|
473
|
-
}
|
|
474
|
-
|
|
475
|
-
[data-v-a440e92e] .ag-header-cell {
|
|
476
|
-
border-right-style: solid;
|
|
477
|
-
border-right-width: 1px;
|
|
478
|
-
border-right-color: #cecece; /* 深灰色底边框 */
|
|
479
|
-
}
|
|
480
|
-
|
|
481
|
-
/* 如果你想要更具体的样式,比如只针对第一个表头列 */
|
|
482
|
-
.ag-header-cell[data-v-a440e92e]:first-child {
|
|
483
|
-
border-left: none; /* 移除左侧边框,如果需要的话 */
|
|
484
|
-
}
|
|
485
|
-
|
|
486
|
-
/* 或者针对最后一列 */
|
|
487
|
-
.ag-header-cell[data-v-a440e92e]:last-child {
|
|
488
|
-
border-right: none; /* 移除右侧边框,如果需要的话 */
|
|
489
|
-
}
|
|
490
|
-
|
|
491
|
-
/* 选中行的样式 */
|
|
492
|
-
[data-v-a440e92e] .ag-row-selected::before {
|
|
493
|
-
background-color: rgba(183, 249, 177, 0.5803921569);
|
|
494
|
-
}
|
|
495
|
-
|
|
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;
|
|
500
|
-
}
|
|
501
|
-
|
|
502
|
-
/* 表头的样式 */
|
|
503
|
-
[data-v-a440e92e] .ag-header {
|
|
504
|
-
background-color: #dbefff;
|
|
505
|
-
text-align: center;
|
|
506
|
-
}
|
|
507
|
-
|
|
508
|
-
[data-v-a440e92e] .ag-checkbox-input-wrapper.ag-disabled {
|
|
509
|
-
opacity: 1;
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
/* 默认行的背景色 */
|
|
513
|
-
[data-v-a440e92e] .ag-row-odd {
|
|
514
|
-
background-color: aliceblue;
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
/* 取消选中行的样式 */
|
|
518
|
-
[data-v-a440e92e] .ag-row-hover:not(.ag-row-selected)::before {
|
|
519
|
-
background-color: #ecf0f1;
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
[data-v-a440e92e] .ag-header-cell-label {
|
|
523
|
-
white-space: pre-line !important; /* 强制允许换行 */
|
|
524
|
-
}
|
|
525
|
-
|
|
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;
|
|
533
|
-
}
|
|
534
|
-
|
|
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;
|
|
545
|
-
}
|
|
546
|
-
|
|
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] {
|
|
558
|
-
position: absolute;
|
|
559
|
-
top: 0;
|
|
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
568
|
.container[data-v-87a0d832] {
|
|
569
569
|
width: 100%;
|
|
570
570
|
height: 100%;
|
|
@@ -626,6 +626,10 @@ nav[data-v-35c7b3ce] .jh-button[data-v-35c7b3ce] {
|
|
|
626
626
|
font-family: "阿里巴巴普惠体Light";
|
|
627
627
|
}
|
|
628
628
|
|
|
629
|
+
[data-v-6e3557b8] .van-checkbox {
|
|
630
|
+
padding: 5px 0;
|
|
631
|
+
}
|
|
632
|
+
|
|
629
633
|
[data-v-7351fe97] .van-popup {
|
|
630
634
|
max-height: 80%;
|
|
631
635
|
}
|
|
@@ -657,8 +661,4 @@ nav[data-v-35c7b3ce] .jh-button[data-v-35c7b3ce] {
|
|
|
657
661
|
|
|
658
662
|
[data-v-804c414a] .van-checkbox {
|
|
659
663
|
padding: 5px 0;
|
|
660
|
-
}
|
|
661
|
-
|
|
662
|
-
[data-v-6e3557b8] .van-checkbox {
|
|
663
|
-
padding: 5px 0;
|
|
664
664
|
}
|