@baosight/erm 1.7.0 → 1.7.2
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/README.md +4 -0
- package/lib/index.css +2 -2
- package/lib/index.esm.css +90 -85
- package/lib/index.esm.js +1 -1
- package/package.json +81 -81
package/lib/index.esm.css
CHANGED
|
@@ -1,74 +1,4 @@
|
|
|
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
2
|
.container[data-v-87a0d832] {
|
|
73
3
|
width: 100%;
|
|
74
4
|
height: 100%;
|
|
@@ -157,7 +87,8 @@
|
|
|
157
87
|
flex-direction: column;
|
|
158
88
|
overflow: hidden;
|
|
159
89
|
white-space: normal;
|
|
160
|
-
border: 1px solid #cecece !important;
|
|
90
|
+
border: 1px solid #cecece !important;
|
|
91
|
+
/* 设置最外边的边框 */
|
|
161
92
|
margin-right: 2px !important;
|
|
162
93
|
margin-left: 2px !important;
|
|
163
94
|
margin-bottom: 60px !important;
|
|
@@ -180,17 +111,20 @@
|
|
|
180
111
|
[data-v-a440e92e] .ag-header-cell {
|
|
181
112
|
border-right-style: solid;
|
|
182
113
|
border-right-width: 1px;
|
|
183
|
-
border-right-color: #cecece;
|
|
114
|
+
border-right-color: #cecece;
|
|
115
|
+
/* 深灰色底边框 */
|
|
184
116
|
}
|
|
185
117
|
|
|
186
118
|
/* 如果你想要更具体的样式,比如只针对第一个表头列 */
|
|
187
119
|
.ag-header-cell[data-v-a440e92e]:first-child {
|
|
188
|
-
border-left: none;
|
|
120
|
+
border-left: none;
|
|
121
|
+
/* 移除左侧边框,如果需要的话 */
|
|
189
122
|
}
|
|
190
123
|
|
|
191
124
|
/* 或者针对最后一列 */
|
|
192
125
|
.ag-header-cell[data-v-a440e92e]:last-child {
|
|
193
|
-
border-right: none;
|
|
126
|
+
border-right: none;
|
|
127
|
+
/* 移除右侧边框,如果需要的话 */
|
|
194
128
|
}
|
|
195
129
|
|
|
196
130
|
/* 选中行的样式 */
|
|
@@ -225,7 +159,8 @@
|
|
|
225
159
|
}
|
|
226
160
|
|
|
227
161
|
[data-v-a440e92e] .ag-header-cell-label {
|
|
228
|
-
white-space: pre-line !important;
|
|
162
|
+
white-space: pre-line !important;
|
|
163
|
+
/* 强制允许换行 */
|
|
229
164
|
}
|
|
230
165
|
|
|
231
166
|
/*
|
|
@@ -270,6 +205,77 @@
|
|
|
270
205
|
z-index: 1000;
|
|
271
206
|
}
|
|
272
207
|
|
|
208
|
+
.rowContent[data-v-1b695265] {
|
|
209
|
+
display: flex;
|
|
210
|
+
flex-direction: row;
|
|
211
|
+
justify-content: center;
|
|
212
|
+
width: 100%;
|
|
213
|
+
margin: 0;
|
|
214
|
+
padding: 0;
|
|
215
|
+
}
|
|
216
|
+
.rowContent .mainContent[data-v-1b695265] {
|
|
217
|
+
width: 100%;
|
|
218
|
+
display: flex;
|
|
219
|
+
flex-direction: column;
|
|
220
|
+
justify-content: start;
|
|
221
|
+
overflow: auto;
|
|
222
|
+
border-radius: 15px;
|
|
223
|
+
background-color: #ffffff;
|
|
224
|
+
}
|
|
225
|
+
.rowContent .mainContent .singleRow[data-v-1b695265] {
|
|
226
|
+
display: flex;
|
|
227
|
+
flex-direction: column;
|
|
228
|
+
justify-content: flex-start;
|
|
229
|
+
padding: 0px 0;
|
|
230
|
+
border-bottom: 1px solid rgba(204, 204, 204, 0.4666666667);
|
|
231
|
+
}
|
|
232
|
+
.rowContent .mainContent .colDesc[data-v-1b695265] {
|
|
233
|
+
display: flex;
|
|
234
|
+
flex-direction: row;
|
|
235
|
+
justify-content: flex-start;
|
|
236
|
+
align-items: center;
|
|
237
|
+
font-size: 14px;
|
|
238
|
+
font-family: "阿里巴巴普惠体Regular";
|
|
239
|
+
padding-left: 4px;
|
|
240
|
+
}
|
|
241
|
+
.rowContent .mainContent .colDesc .required[data-v-1b695265] {
|
|
242
|
+
content: "*";
|
|
243
|
+
display: contents;
|
|
244
|
+
color: red;
|
|
245
|
+
}
|
|
246
|
+
.rowContent .mainContent .colData[data-v-1b695265] {
|
|
247
|
+
font-size: 14px;
|
|
248
|
+
font-family: "阿里巴巴普惠体Regular";
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.mainTitle[data-v-1b695265] {
|
|
252
|
+
display: flex;
|
|
253
|
+
flex-direction: column;
|
|
254
|
+
justify-content: center;
|
|
255
|
+
align-items: center;
|
|
256
|
+
font-family: "阿里巴巴普惠体Bold";
|
|
257
|
+
font-size: 23px;
|
|
258
|
+
color: #548cf6;
|
|
259
|
+
margin: 10px;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
[data-v-1b695265] .checkError {
|
|
263
|
+
border-bottom: 1px solid red;
|
|
264
|
+
animation: blink-1b695265 2s linear infinite;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
@keyframes blink-1b695265 {
|
|
268
|
+
0% {
|
|
269
|
+
border-color: red;
|
|
270
|
+
}
|
|
271
|
+
50% {
|
|
272
|
+
border-color: transparent;
|
|
273
|
+
}
|
|
274
|
+
100% {
|
|
275
|
+
border-color: red;
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
/* 多选待使用 */
|
|
273
279
|
.swiperButton[data-v-35c7b3ce] {
|
|
274
280
|
height: 100%;
|
|
275
281
|
}
|
|
@@ -324,7 +330,7 @@
|
|
|
324
330
|
font-family: "阿里巴巴普惠体Regular";
|
|
325
331
|
}
|
|
326
332
|
.rowContent .colDataDesc[data-v-35c7b3ce] {
|
|
327
|
-
color: #
|
|
333
|
+
color: #969799;
|
|
328
334
|
font-size: 12px;
|
|
329
335
|
font-family: "阿里巴巴普惠体Regular";
|
|
330
336
|
width: 100%;
|
|
@@ -333,6 +339,7 @@
|
|
|
333
339
|
}
|
|
334
340
|
.rowContent .textPosition[data-v-35c7b3ce] {
|
|
335
341
|
font-size: 12px;
|
|
342
|
+
color: #000000;
|
|
336
343
|
}
|
|
337
344
|
|
|
338
345
|
.rowContentCard[data-v-35c7b3ce] {
|
|
@@ -389,7 +396,7 @@
|
|
|
389
396
|
width: 70%;
|
|
390
397
|
}
|
|
391
398
|
.rowContentCard .colDataDesc[data-v-35c7b3ce] {
|
|
392
|
-
color: #
|
|
399
|
+
color: #969799;
|
|
393
400
|
font-size: 12px;
|
|
394
401
|
font-family: "阿里巴巴普惠体Regular";
|
|
395
402
|
word-break: break-all;
|
|
@@ -398,6 +405,7 @@
|
|
|
398
405
|
}
|
|
399
406
|
.rowContentCard .textPosition[data-v-35c7b3ce] {
|
|
400
407
|
font-size: 12px;
|
|
408
|
+
color: #000000;
|
|
401
409
|
}
|
|
402
410
|
|
|
403
411
|
.rowContent2[data-v-35c7b3ce] {
|
|
@@ -420,7 +428,7 @@
|
|
|
420
428
|
font-size: 12px;
|
|
421
429
|
float: right;
|
|
422
430
|
padding-right: 10px;
|
|
423
|
-
color:
|
|
431
|
+
color: #000000;
|
|
424
432
|
}
|
|
425
433
|
.rowContent2 .rightArea[data-v-35c7b3ce] {
|
|
426
434
|
display: flex;
|
|
@@ -456,7 +464,7 @@
|
|
|
456
464
|
font-family: "阿里巴巴普惠体Regular";
|
|
457
465
|
}
|
|
458
466
|
.rowContent2 .colDataDesc[data-v-35c7b3ce] {
|
|
459
|
-
color: #
|
|
467
|
+
color: #969799;
|
|
460
468
|
font-size: 12px;
|
|
461
469
|
font-family: "阿里巴巴普惠体Regular";
|
|
462
470
|
width: 100%;
|
|
@@ -521,7 +529,7 @@
|
|
|
521
529
|
width: 70%;
|
|
522
530
|
}
|
|
523
531
|
.rowShadowCard .colDataDesc[data-v-35c7b3ce] {
|
|
524
|
-
color: #
|
|
532
|
+
color: #969799;
|
|
525
533
|
font-size: 12px;
|
|
526
534
|
font-family: "阿里巴巴普惠体Regular";
|
|
527
535
|
word-break: break-all;
|
|
@@ -532,14 +540,11 @@
|
|
|
532
540
|
float: right;
|
|
533
541
|
padding-right: 4px;
|
|
534
542
|
font-size: 12px;
|
|
543
|
+
color: #000000;
|
|
535
544
|
}
|
|
536
545
|
|
|
537
546
|
/*阴影Card结束*/
|
|
538
547
|
.mainTitle[data-v-35c7b3ce] {
|
|
539
|
-
/* display: flex;
|
|
540
|
-
flex-direction: column;
|
|
541
|
-
justify-content: center;
|
|
542
|
-
align-items: center;*/
|
|
543
548
|
font-family: "阿里巴巴普惠体Regular";
|
|
544
549
|
width: 100%;
|
|
545
550
|
text-align: center;
|
|
@@ -631,7 +636,7 @@ nav .jh-button[data-v-35c7b3ce] {
|
|
|
631
636
|
}
|
|
632
637
|
|
|
633
638
|
[data-v-7351fe97] .placeholder {
|
|
634
|
-
color: #
|
|
639
|
+
color: #c8c9cc !important;
|
|
635
640
|
}
|
|
636
641
|
|
|
637
642
|
.result-color[data-v-7351fe97] {
|