cnhis-design-vue 3.1.8-beta.9 → 3.1.9-beta.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.
Files changed (48) hide show
  1. package/README.md +22 -22
  2. package/es/packages/big-table/index.d.ts +1 -1
  3. package/es/packages/big-table/src/BigTable.vue.d.ts +1 -1
  4. package/es/packages/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.mjs +3 -1
  5. package/es/packages/big-table/style/index.less +557 -557
  6. package/es/packages/bpmn-workflow/style/index.less +29 -29
  7. package/es/packages/button-print/style/index.less +30 -30
  8. package/es/packages/chunk-upload/src/chunk-upload-new.vue.d.ts +6 -4
  9. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue.d.ts +3 -0
  10. package/es/packages/chunk-upload/style/index.less +394 -394
  11. package/es/packages/drag-layout/src/DragLayout.vue.d.ts +8 -5
  12. package/es/packages/drag-layout/style/index.less +208 -208
  13. package/es/packages/field-set/style/index.less +157 -157
  14. package/es/packages/form-render/index.d.ts +2 -1
  15. package/es/packages/form-render/index.mjs +2 -0
  16. package/es/packages/form-render/src/FormRender.vue.d.ts +2 -1
  17. package/es/packages/form-render/src/FormRender.vue_vue_type_script_setup_true_lang.mjs +12 -7
  18. package/es/packages/form-render/src/components/select.d.ts +10 -2
  19. package/es/packages/form-render/src/components/select.mjs +19 -2
  20. package/es/packages/form-render/src/constants/index.d.ts +2 -0
  21. package/es/packages/form-render/src/constants/index.mjs +2 -1
  22. package/es/packages/form-render/src/hooks/index.d.ts +11 -9
  23. package/es/packages/form-render/src/hooks/index.mjs +2 -0
  24. package/es/packages/form-render/src/hooks/useAsyncQueue.d.ts +13 -33
  25. package/es/packages/form-render/src/hooks/useBusinessBinding.d.ts +2 -2
  26. package/es/packages/form-render/src/hooks/useBusinessBinding.mjs +1 -1
  27. package/es/packages/form-render/src/hooks/useChangeContext.d.ts +11 -0
  28. package/es/packages/form-render/src/hooks/useChangeContext.mjs +21 -0
  29. package/es/packages/form-render/src/hooks/useUrlDeps.d.ts +1 -0
  30. package/es/packages/form-render/src/hooks/useUrlDeps.mjs +4 -0
  31. package/es/packages/form-render/src/types/index.d.ts +16 -6
  32. package/es/packages/form-table/style/index.less +301 -301
  33. package/es/packages/grid/style/index.less +12 -12
  34. package/es/packages/index.less +2945 -2945
  35. package/es/packages/index.mjs +2 -0
  36. package/es/packages/info-header/style/index.less +153 -153
  37. package/es/packages/map/style/index.less +59 -59
  38. package/es/packages/scale-view/style/index.less +748 -748
  39. package/es/packages/select-label/src/LabelFormContent.vue.d.ts +3 -0
  40. package/es/packages/select-label/style/index.less +151 -151
  41. package/es/packages/select-person/src/SelectPerson.vue.d.ts +6 -8
  42. package/es/packages/select-person/src/SelectPerson.vue_vue_type_script_setup_true_lang.mjs +43 -18
  43. package/es/packages/select-person/src/utils/index.mjs +15 -2
  44. package/es/packages/select-person/style/index.less +229 -229
  45. package/es/packages/time-line/style/index.less +34 -34
  46. package/global.d.ts +8 -8
  47. package/package.json +1 -1
  48. package/yarn-error.log +103 -8659
@@ -1,557 +1,557 @@
1
- .big-table-filter-wrap {
2
- position: fixed;
3
- z-index: 99998;
4
- transform: translateX(-2%);
5
- margin-top: -6px;
6
-
7
- min-width: 280px;
8
- border-radius: 4px;
9
- background-color: #fff;
10
- -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
11
- box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
12
-
13
- display: flex;
14
- flex-wrap: wrap;
15
- flex-direction: column;
16
- overflow: hidden;
17
- transition: width 2s;
18
-
19
- .sort-list {
20
- margin-top: 6px;
21
- }
22
-
23
- .sort-item {
24
- line-height: 32px;
25
- padding: 0 13px;
26
- display: flex;
27
- align-items: center;
28
-
29
- &:hover,
30
- &.active {
31
- background: #f2f2f2;
32
- }
33
- }
34
-
35
- .sort-icon {
36
- width: 16px;
37
- height: 16px;
38
- background-size: contain;
39
- display: inline-block;
40
- }
41
-
42
- /*
43
- .sort-icon-asc {
44
- background-image: url('../img/icon-asc.png');
45
- }
46
- */
47
-
48
- .sort-text {
49
- margin-left: 11px;
50
- font-size: 14px;
51
- line-height: 32px;
52
- color: rgba(0, 0, 0, 0.8);
53
- }
54
-
55
- .sort-icon-desc {
56
- background-image: url('cnhis-design-vue/es/src/assets/img/icon-desc.png');
57
- }
58
-
59
- .filter-header {
60
- padding: 0 13px;
61
- cursor: initial;
62
- }
63
-
64
- .filter-header-icon {
65
- border-top-color: #333;
66
- border-right-color: #333;
67
- }
68
-
69
- .filter-header-text {
70
- margin-left: 11px;
71
- }
72
-
73
- .check-search-wrap {
74
- padding: 8px 0;
75
- width: 100%;
76
- background: #f7f7f7;
77
- display: flex;
78
- justify-content: center;
79
- }
80
-
81
- .check-seach-input {
82
- line-height: 32px;
83
- }
84
-
85
- .checkbox-box {
86
- padding-right: 3px;
87
- width: 100%;
88
- }
89
-
90
- .checkbox-wrap {
91
- padding-left: 13px;
92
- padding-right: 3px;
93
- background: #fff;
94
- display: flex;
95
- flex-direction: column;
96
- overflow-y: auto;
97
-
98
- &::-webkit-scrollbar {
99
- width: 4px;
100
- height: 4px;
101
- }
102
-
103
- &::-webkit-scrollbar-thumb {
104
- background-color: #d5d5d5;
105
- border-radius: 4px;
106
- }
107
-
108
- &::-webkit-scrollbar-track {
109
- background-color: #fff;
110
- border-radius: 4px;
111
- }
112
-
113
- &::-webkit-scrollbar-corner {
114
- background-color: #000;
115
- border-radius: 4px;
116
- width: 4px;
117
- }
118
- }
119
-
120
- .checkbox-wrap--search {
121
- padding-right: 10px;
122
- }
123
-
124
- .checkbox-btn-wrap {
125
- display: flex;
126
- padding: 9px 10px 19px 14px;
127
-
128
- .checkbox-btn {
129
- width: 56px;
130
- padding: 0;
131
- }
132
-
133
- .checkbox-btn + .checkbox-btn {
134
- margin-left: 8px;
135
- }
136
-
137
- .checkbox-btn-status {
138
- .checkbox-btn {
139
- border: 0;
140
- border-radius: 0;
141
- width: initial;
142
- margin: 0 13px;
143
- position: relative;
144
-
145
- &:hover::after {
146
- display: block;
147
- content: '';
148
- position: absolute;
149
- bottom: 5px;
150
- width: 100%;
151
- height: 1px;
152
- background-color: #5585f5;
153
- }
154
- }
155
- }
156
- }
157
-
158
- .arrows-icon {
159
- position: absolute;
160
- bottom: -1px;
161
- right: -1px;
162
- font-size: 15px;
163
- cursor: nw-resize;
164
- width: 25px;
165
- height: 20px;
166
- }
167
- }
168
-
169
- body {
170
- > .vxe-table--tooltip-wrapper {
171
- display: none !important;
172
- }
173
- }
174
-
175
- .custom-big-table {
176
- position: relative;
177
-
178
- .img-wrap {
179
- padding: 2px 0;
180
- line-height: 1;
181
- height: 100%;
182
- display: flex;
183
- align-items: center;
184
-
185
- img {
186
- max-height: 100%;
187
- object-fit: contain;
188
- cursor: pointer;
189
- }
190
-
191
- &.img-circle {
192
- img {
193
- width: 28px;
194
- border-radius: 50%;
195
- object-fit: contain;
196
- }
197
- }
198
- }
199
-
200
- .bigTable-qr-span {
201
- position: relative;
202
- display: inline-block;
203
- height: 100%;
204
-
205
- .bigTable-qr-img {
206
- max-height: 96%;
207
- }
208
-
209
- > span {
210
- position: absolute;
211
- top: 0;
212
- left: 0;
213
- justify-content: center;
214
- align-items: center;
215
- width: 100%;
216
- height: 100%;
217
- background: rgba(0, 0, 0, 0.7);
218
- color: #fff;
219
- display: none;
220
- cursor: pointer;
221
- }
222
-
223
- &:hover {
224
- > span {
225
- display: inline-flex;
226
- }
227
- }
228
- }
229
-
230
- /* 行内表单样式 */
231
-
232
- .base-form {
233
- overflow: hidden !important;
234
- display: flex;
235
- align-items: center;
236
- width: 100%;
237
- }
238
-
239
- .base-form-content {
240
- width: 100%;
241
- }
242
-
243
- textarea {
244
- height: 32px;
245
- margin-bottom: 0;
246
- resize: none;
247
- }
248
-
249
- .formItem-select-multiple {
250
- display: flex;
251
- align-items: center;
252
- width: 100%;
253
- line-height: 40px;
254
- }
255
-
256
- /* 行内表单样式 */
257
-
258
- &.mt {
259
- margin-top: 26px;
260
- height: calc(100% - 78px) !important;
261
- }
262
-
263
- &.expand-padding {
264
- .vxe-table .vxe-body--expanded-cell {
265
- padding-left: 66px !important;
266
- padding-right: 66px !important;
267
- }
268
- }
269
-
270
- th.vxe-header--column {
271
- cursor: pointer;
272
- }
273
-
274
- .row-btn {
275
- margin-right: 10px;
276
- }
277
-
278
- .vxe-table {
279
- transform: translateZ(0);
280
-
281
- .vxe-table--empty-content {
282
- width: 100%;
283
- height: 100%;
284
-
285
- > div {
286
- width: 100%;
287
- height: 100%;
288
-
289
- .no-data-tip {
290
- display: inline-flex;
291
- }
292
- }
293
- }
294
-
295
- .col--checkbox,
296
- .col--seq {
297
- .vxe-cell {
298
- padding: 0;
299
-
300
- .vxe-checkbox--label {
301
- padding-left: 0;
302
- }
303
- }
304
- }
305
-
306
- .vxe-cell .vxe-tree-cell {
307
- height: 100%;
308
- }
309
-
310
- .scan-multi-delete {
311
- color: #F06F64;
312
- }
313
-
314
- .vxe-table--header {
315
- background-color: #f2f2f2;
316
-
317
- .vxe-header--column .vxe-cell--title {
318
- height: 100%;
319
- line-height: unset;
320
- width: 100%;
321
- }
322
- }
323
-
324
- .vxe-table--footer-wrapper.body--wrapper,
325
- .vxe-table--body-wrapper {
326
- &::-webkit-scrollbar {
327
- width: 10px;
328
- height: 10px;
329
- background-color: #f2f2f2;
330
- }
331
-
332
- &::-webkit-scrollbar-thumb:hover {
333
- background-color: #b2b2b2;
334
- }
335
- }
336
-
337
- .vxe-footer--row .vxe-footer--column {
338
- > .vxe-cell .vxe-cell--item {
339
- height: 30px;
340
- line-height: 30px;
341
- }
342
- }
343
-
344
- .vxe-cell--checkbox.is--disabled {
345
- .vxe-checkbox--icon {
346
- display: none;
347
- }
348
- }
349
- }
350
-
351
- .filter-box {
352
- display: flex;
353
- align-items: center;
354
- width: 100%;
355
-
356
- .text-over-tooltip-components {
357
- max-width: calc(100% - 20px);
358
- }
359
-
360
- .vxe-filter--btn {
361
- border-top-color: #c0c4cc;
362
- border-right-color: #c0c4cc;
363
- }
364
-
365
- .vxe-filter--btn.active {
366
- border-top-color: #35393c;
367
- border-right-color: #35393c;
368
- }
369
-
370
- .vxe-filter--btn.checked {
371
- border-top-color: #5585f5;
372
- border-right-color: #5585f5;
373
- }
374
- }
375
-
376
- .disabled-checked-tips {
377
- position: absolute;
378
- left: 6px;
379
- top: 50%;
380
- bottom: 0;
381
- right: 0;
382
- box-sizing: border-box;
383
- width: 16px;
384
- height: 16px;
385
- margin-top: -8px;
386
- overflow: hidden;
387
- border-radius: 50%;
388
- border: 2px solid #ff1818;
389
- background: #fff;
390
-
391
- &::after {
392
- position: absolute;
393
- content: '';
394
- width: 16px;
395
- height: 2px;
396
- background-color: #ff1818;
397
- transform: rotate(45deg);
398
- transform-origin: 0 2px;
399
- left: 0;
400
- top: 0;
401
- }
402
- }
403
-
404
- .form-select-table {
405
- .n-base-select-menu__empty {
406
- display: none;
407
- }
408
- }
409
-
410
- .percent-wrap {
411
- display: flex;
412
- flex-direction: column;
413
- justify-content: center;
414
- align-items: center;
415
- text-align: center;
416
-
417
- .percent-value {
418
- line-height: 1;
419
- margin-bottom: -4px;
420
- margin-top: 4px;
421
- }
422
- }
423
-
424
- .refresh {
425
- display: flex;
426
- align-items: center;
427
- background-color: #fff;
428
- box-shadow: 0 2px 4px 0 rgba(108, 108, 108, 0.13);
429
- color: #5585f5;
430
- font-size: 12px;
431
- height: 27px;
432
-
433
- position: absolute;
434
- right: 0;
435
- top: 6px;
436
- z-index: 1;
437
-
438
- padding-left: 14px;
439
- padding-right: 14px;
440
- border-top-left-radius: 14px;
441
- border-bottom-left-radius: 14px;
442
-
443
- cursor: pointer;
444
- }
445
-
446
- .refresh-row {
447
- margin-left: 3px;
448
- margin-bottom: 0;
449
- }
450
-
451
- .check-wrap {
452
- background: #ffffe9;
453
- width: 100%;
454
- line-height: 26px;
455
- display: flex;
456
- justify-content: center;
457
-
458
- position: absolute;
459
- margin-top: -26px;
460
-
461
- .check-wrap-title,
462
- .check-wrap-btn {
463
- color: #000000;
464
- font-size: 12px;
465
- margin-bottom: 0;
466
- cursor: pointer;
467
- }
468
-
469
- .check-wrap-btn {
470
- color: #5585f5;
471
- }
472
- }
473
-
474
- .domPropsInnerHTML-span {
475
- height: 100%;
476
-
477
- img {
478
- display: inline-block;
479
- height: var(--tableImageHeight);
480
- width: var(--tableImageWidth);
481
- }
482
- }
483
- }
484
-
485
-
486
- .no-data-tip {
487
- display: flex;
488
- flex-direction: column;
489
- justify-content: center;
490
- align-items: center;
491
- width: 100%;
492
- height: 100%;
493
- color: #333333;
494
- font-size: 22px;
495
-
496
- > img {
497
- max-width: 70%;
498
- width: 260px;
499
- }
500
-
501
- > p {
502
- margin-top: 12px;
503
- margin-bottom: 0;
504
- font-size: 16px;
505
- color: rgba(0, 0, 0, 0.8);
506
- }
507
-
508
- > span {
509
- font-size: 14px;
510
- color: rgba(0, 0, 0, 0.4);
511
- margin-top: 6px;
512
- }
513
- }
514
-
515
- .text-over-tooltip-components {
516
- display: inline-block;
517
- max-width: 98%;
518
- /* 文字超出宽度显示省略号 单行 */
519
-
520
- .ellipsis {
521
- font-size: 14px;
522
- color: #35393c;
523
- overflow: hidden;
524
- text-overflow: ellipsis;
525
- white-space: nowrap;
526
-
527
- i {
528
- font-style: normal;
529
- word-break: keep-all;
530
- white-space: nowrap;
531
- }
532
- }
533
-
534
- /* 自定义样式 */
535
-
536
- .fs20 {
537
- font-size: 20px;
538
- font-weight: 600;
539
- color: green;
540
- line-height: 22px;
541
- }
542
-
543
- .fs12 {
544
- font-size: 12px;
545
- font-weight: 400;
546
- color: orange;
547
- line-height: 14px;
548
- }
549
- }
550
-
551
- .svg-icon {
552
- width: 1em;
553
- height: 1em;
554
- vertical-align: -0.15em;
555
- fill: currentColor;
556
- overflow: hidden;
557
- }
1
+ .big-table-filter-wrap {
2
+ position: fixed;
3
+ z-index: 99998;
4
+ transform: translateX(-2%);
5
+ margin-top: -6px;
6
+
7
+ min-width: 280px;
8
+ border-radius: 4px;
9
+ background-color: #fff;
10
+ -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
11
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
12
+
13
+ display: flex;
14
+ flex-wrap: wrap;
15
+ flex-direction: column;
16
+ overflow: hidden;
17
+ transition: width 2s;
18
+
19
+ .sort-list {
20
+ margin-top: 6px;
21
+ }
22
+
23
+ .sort-item {
24
+ line-height: 32px;
25
+ padding: 0 13px;
26
+ display: flex;
27
+ align-items: center;
28
+
29
+ &:hover,
30
+ &.active {
31
+ background: #f2f2f2;
32
+ }
33
+ }
34
+
35
+ .sort-icon {
36
+ width: 16px;
37
+ height: 16px;
38
+ background-size: contain;
39
+ display: inline-block;
40
+ }
41
+
42
+ /*
43
+ .sort-icon-asc {
44
+ background-image: url('../img/icon-asc.png');
45
+ }
46
+ */
47
+
48
+ .sort-text {
49
+ margin-left: 11px;
50
+ font-size: 14px;
51
+ line-height: 32px;
52
+ color: rgba(0, 0, 0, 0.8);
53
+ }
54
+
55
+ .sort-icon-desc {
56
+ background-image: url('cnhis-design-vue/es/src/assets/img/icon-desc.png');
57
+ }
58
+
59
+ .filter-header {
60
+ padding: 0 13px;
61
+ cursor: initial;
62
+ }
63
+
64
+ .filter-header-icon {
65
+ border-top-color: #333;
66
+ border-right-color: #333;
67
+ }
68
+
69
+ .filter-header-text {
70
+ margin-left: 11px;
71
+ }
72
+
73
+ .check-search-wrap {
74
+ padding: 8px 0;
75
+ width: 100%;
76
+ background: #f7f7f7;
77
+ display: flex;
78
+ justify-content: center;
79
+ }
80
+
81
+ .check-seach-input {
82
+ line-height: 32px;
83
+ }
84
+
85
+ .checkbox-box {
86
+ padding-right: 3px;
87
+ width: 100%;
88
+ }
89
+
90
+ .checkbox-wrap {
91
+ padding-left: 13px;
92
+ padding-right: 3px;
93
+ background: #fff;
94
+ display: flex;
95
+ flex-direction: column;
96
+ overflow-y: auto;
97
+
98
+ &::-webkit-scrollbar {
99
+ width: 4px;
100
+ height: 4px;
101
+ }
102
+
103
+ &::-webkit-scrollbar-thumb {
104
+ background-color: #d5d5d5;
105
+ border-radius: 4px;
106
+ }
107
+
108
+ &::-webkit-scrollbar-track {
109
+ background-color: #fff;
110
+ border-radius: 4px;
111
+ }
112
+
113
+ &::-webkit-scrollbar-corner {
114
+ background-color: #000;
115
+ border-radius: 4px;
116
+ width: 4px;
117
+ }
118
+ }
119
+
120
+ .checkbox-wrap--search {
121
+ padding-right: 10px;
122
+ }
123
+
124
+ .checkbox-btn-wrap {
125
+ display: flex;
126
+ padding: 9px 10px 19px 14px;
127
+
128
+ .checkbox-btn {
129
+ width: 56px;
130
+ padding: 0;
131
+ }
132
+
133
+ .checkbox-btn + .checkbox-btn {
134
+ margin-left: 8px;
135
+ }
136
+
137
+ .checkbox-btn-status {
138
+ .checkbox-btn {
139
+ border: 0;
140
+ border-radius: 0;
141
+ width: initial;
142
+ margin: 0 13px;
143
+ position: relative;
144
+
145
+ &:hover::after {
146
+ display: block;
147
+ content: '';
148
+ position: absolute;
149
+ bottom: 5px;
150
+ width: 100%;
151
+ height: 1px;
152
+ background-color: #5585f5;
153
+ }
154
+ }
155
+ }
156
+ }
157
+
158
+ .arrows-icon {
159
+ position: absolute;
160
+ bottom: -1px;
161
+ right: -1px;
162
+ font-size: 15px;
163
+ cursor: nw-resize;
164
+ width: 25px;
165
+ height: 20px;
166
+ }
167
+ }
168
+
169
+ body {
170
+ > .vxe-table--tooltip-wrapper {
171
+ display: none !important;
172
+ }
173
+ }
174
+
175
+ .custom-big-table {
176
+ position: relative;
177
+
178
+ .img-wrap {
179
+ padding: 2px 0;
180
+ line-height: 1;
181
+ height: 100%;
182
+ display: flex;
183
+ align-items: center;
184
+
185
+ img {
186
+ max-height: 100%;
187
+ object-fit: contain;
188
+ cursor: pointer;
189
+ }
190
+
191
+ &.img-circle {
192
+ img {
193
+ width: 28px;
194
+ border-radius: 50%;
195
+ object-fit: contain;
196
+ }
197
+ }
198
+ }
199
+
200
+ .bigTable-qr-span {
201
+ position: relative;
202
+ display: inline-block;
203
+ height: 100%;
204
+
205
+ .bigTable-qr-img {
206
+ max-height: 96%;
207
+ }
208
+
209
+ > span {
210
+ position: absolute;
211
+ top: 0;
212
+ left: 0;
213
+ justify-content: center;
214
+ align-items: center;
215
+ width: 100%;
216
+ height: 100%;
217
+ background: rgba(0, 0, 0, 0.7);
218
+ color: #fff;
219
+ display: none;
220
+ cursor: pointer;
221
+ }
222
+
223
+ &:hover {
224
+ > span {
225
+ display: inline-flex;
226
+ }
227
+ }
228
+ }
229
+
230
+ /* 行内表单样式 */
231
+
232
+ .base-form {
233
+ overflow: hidden !important;
234
+ display: flex;
235
+ align-items: center;
236
+ width: 100%;
237
+ }
238
+
239
+ .base-form-content {
240
+ width: 100%;
241
+ }
242
+
243
+ textarea {
244
+ height: 32px;
245
+ margin-bottom: 0;
246
+ resize: none;
247
+ }
248
+
249
+ .formItem-select-multiple {
250
+ display: flex;
251
+ align-items: center;
252
+ width: 100%;
253
+ line-height: 40px;
254
+ }
255
+
256
+ /* 行内表单样式 */
257
+
258
+ &.mt {
259
+ margin-top: 26px;
260
+ height: calc(100% - 78px) !important;
261
+ }
262
+
263
+ &.expand-padding {
264
+ .vxe-table .vxe-body--expanded-cell {
265
+ padding-left: 66px !important;
266
+ padding-right: 66px !important;
267
+ }
268
+ }
269
+
270
+ th.vxe-header--column {
271
+ cursor: pointer;
272
+ }
273
+
274
+ .row-btn {
275
+ margin-right: 10px;
276
+ }
277
+
278
+ .vxe-table {
279
+ transform: translateZ(0);
280
+
281
+ .vxe-table--empty-content {
282
+ width: 100%;
283
+ height: 100%;
284
+
285
+ > div {
286
+ width: 100%;
287
+ height: 100%;
288
+
289
+ .no-data-tip {
290
+ display: inline-flex;
291
+ }
292
+ }
293
+ }
294
+
295
+ .col--checkbox,
296
+ .col--seq {
297
+ .vxe-cell {
298
+ padding: 0;
299
+
300
+ .vxe-checkbox--label {
301
+ padding-left: 0;
302
+ }
303
+ }
304
+ }
305
+
306
+ .vxe-cell .vxe-tree-cell {
307
+ height: 100%;
308
+ }
309
+
310
+ .scan-multi-delete {
311
+ color: #F06F64;
312
+ }
313
+
314
+ .vxe-table--header {
315
+ background-color: #f2f2f2;
316
+
317
+ .vxe-header--column .vxe-cell--title {
318
+ height: 100%;
319
+ line-height: unset;
320
+ width: 100%;
321
+ }
322
+ }
323
+
324
+ .vxe-table--footer-wrapper.body--wrapper,
325
+ .vxe-table--body-wrapper {
326
+ &::-webkit-scrollbar {
327
+ width: 10px;
328
+ height: 10px;
329
+ background-color: #f2f2f2;
330
+ }
331
+
332
+ &::-webkit-scrollbar-thumb:hover {
333
+ background-color: #b2b2b2;
334
+ }
335
+ }
336
+
337
+ .vxe-footer--row .vxe-footer--column {
338
+ > .vxe-cell .vxe-cell--item {
339
+ height: 30px;
340
+ line-height: 30px;
341
+ }
342
+ }
343
+
344
+ .vxe-cell--checkbox.is--disabled {
345
+ .vxe-checkbox--icon {
346
+ display: none;
347
+ }
348
+ }
349
+ }
350
+
351
+ .filter-box {
352
+ display: flex;
353
+ align-items: center;
354
+ width: 100%;
355
+
356
+ .text-over-tooltip-components {
357
+ max-width: calc(100% - 20px);
358
+ }
359
+
360
+ .vxe-filter--btn {
361
+ border-top-color: #c0c4cc;
362
+ border-right-color: #c0c4cc;
363
+ }
364
+
365
+ .vxe-filter--btn.active {
366
+ border-top-color: #35393c;
367
+ border-right-color: #35393c;
368
+ }
369
+
370
+ .vxe-filter--btn.checked {
371
+ border-top-color: #5585f5;
372
+ border-right-color: #5585f5;
373
+ }
374
+ }
375
+
376
+ .disabled-checked-tips {
377
+ position: absolute;
378
+ left: 6px;
379
+ top: 50%;
380
+ bottom: 0;
381
+ right: 0;
382
+ box-sizing: border-box;
383
+ width: 16px;
384
+ height: 16px;
385
+ margin-top: -8px;
386
+ overflow: hidden;
387
+ border-radius: 50%;
388
+ border: 2px solid #ff1818;
389
+ background: #fff;
390
+
391
+ &::after {
392
+ position: absolute;
393
+ content: '';
394
+ width: 16px;
395
+ height: 2px;
396
+ background-color: #ff1818;
397
+ transform: rotate(45deg);
398
+ transform-origin: 0 2px;
399
+ left: 0;
400
+ top: 0;
401
+ }
402
+ }
403
+
404
+ .form-select-table {
405
+ .n-base-select-menu__empty {
406
+ display: none;
407
+ }
408
+ }
409
+
410
+ .percent-wrap {
411
+ display: flex;
412
+ flex-direction: column;
413
+ justify-content: center;
414
+ align-items: center;
415
+ text-align: center;
416
+
417
+ .percent-value {
418
+ line-height: 1;
419
+ margin-bottom: -4px;
420
+ margin-top: 4px;
421
+ }
422
+ }
423
+
424
+ .refresh {
425
+ display: flex;
426
+ align-items: center;
427
+ background-color: #fff;
428
+ box-shadow: 0 2px 4px 0 rgba(108, 108, 108, 0.13);
429
+ color: #5585f5;
430
+ font-size: 12px;
431
+ height: 27px;
432
+
433
+ position: absolute;
434
+ right: 0;
435
+ top: 6px;
436
+ z-index: 1;
437
+
438
+ padding-left: 14px;
439
+ padding-right: 14px;
440
+ border-top-left-radius: 14px;
441
+ border-bottom-left-radius: 14px;
442
+
443
+ cursor: pointer;
444
+ }
445
+
446
+ .refresh-row {
447
+ margin-left: 3px;
448
+ margin-bottom: 0;
449
+ }
450
+
451
+ .check-wrap {
452
+ background: #ffffe9;
453
+ width: 100%;
454
+ line-height: 26px;
455
+ display: flex;
456
+ justify-content: center;
457
+
458
+ position: absolute;
459
+ margin-top: -26px;
460
+
461
+ .check-wrap-title,
462
+ .check-wrap-btn {
463
+ color: #000000;
464
+ font-size: 12px;
465
+ margin-bottom: 0;
466
+ cursor: pointer;
467
+ }
468
+
469
+ .check-wrap-btn {
470
+ color: #5585f5;
471
+ }
472
+ }
473
+
474
+ .domPropsInnerHTML-span {
475
+ height: 100%;
476
+
477
+ img {
478
+ display: inline-block;
479
+ height: var(--tableImageHeight);
480
+ width: var(--tableImageWidth);
481
+ }
482
+ }
483
+ }
484
+
485
+
486
+ .no-data-tip {
487
+ display: flex;
488
+ flex-direction: column;
489
+ justify-content: center;
490
+ align-items: center;
491
+ width: 100%;
492
+ height: 100%;
493
+ color: #333333;
494
+ font-size: 22px;
495
+
496
+ > img {
497
+ max-width: 70%;
498
+ width: 260px;
499
+ }
500
+
501
+ > p {
502
+ margin-top: 12px;
503
+ margin-bottom: 0;
504
+ font-size: 16px;
505
+ color: rgba(0, 0, 0, 0.8);
506
+ }
507
+
508
+ > span {
509
+ font-size: 14px;
510
+ color: rgba(0, 0, 0, 0.4);
511
+ margin-top: 6px;
512
+ }
513
+ }
514
+
515
+ .text-over-tooltip-components {
516
+ display: inline-block;
517
+ max-width: 98%;
518
+ /* 文字超出宽度显示省略号 单行 */
519
+
520
+ .ellipsis {
521
+ font-size: 14px;
522
+ color: #35393c;
523
+ overflow: hidden;
524
+ text-overflow: ellipsis;
525
+ white-space: nowrap;
526
+
527
+ i {
528
+ font-style: normal;
529
+ word-break: keep-all;
530
+ white-space: nowrap;
531
+ }
532
+ }
533
+
534
+ /* 自定义样式 */
535
+
536
+ .fs20 {
537
+ font-size: 20px;
538
+ font-weight: 600;
539
+ color: green;
540
+ line-height: 22px;
541
+ }
542
+
543
+ .fs12 {
544
+ font-size: 12px;
545
+ font-weight: 400;
546
+ color: orange;
547
+ line-height: 14px;
548
+ }
549
+ }
550
+
551
+ .svg-icon {
552
+ width: 1em;
553
+ height: 1em;
554
+ vertical-align: -0.15em;
555
+ fill: currentColor;
556
+ overflow: hidden;
557
+ }