@ecan-bi/datav 1.0.41 → 1.0.42
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/dist/index.es.js +675 -135
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +674 -134
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +132 -72
- package/package.json +1 -1
- package/types/_utils/constant.d.ts +2 -1
- package/types/_utils/hooks/index.d.ts +1 -0
- package/types/_utils/hooks/useIndicatorData.d.ts +4 -0
- package/types/container/border/Border.vue.d.ts +54 -54
- package/types/container/border/props.d.ts +54 -54
- package/types/container/modal/Modal.vue.d.ts +1 -1
- package/types/container/modal/index.d.ts +1 -1
- package/types/control/button/Button.vue.d.ts +72 -0
- package/types/control/button/index.d.ts +72 -0
- package/types/control/button/props.d.ts +84 -44
- package/types/control/date-picker/props.d.ts +52 -52
- package/types/control/input/props.d.ts +48 -48
- package/types/control/range-picker/RangePicker.vue.d.ts +52 -52
- package/types/control/range-picker/props.d.ts +52 -52
- package/types/control/select/Select.vue.d.ts +50 -50
- package/types/control/select/props.d.ts +50 -50
- package/types/graph/bar/Bar.vue.d.ts +128 -128
- package/types/graph/bar/index.d.ts +128 -128
- package/types/graph/bar/props.d.ts +65 -65
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +155 -0
- package/types/graph/combo-graph/index.d.ts +155 -0
- package/types/graph/combo-graph/props.d.ts +72 -0
- package/types/graph/custom-graph/props.d.ts +48 -48
- package/types/graph/line/Line.vue.d.ts +155 -0
- package/types/graph/line/index.d.ts +155 -0
- package/types/graph/line/props.d.ts +72 -0
- package/types/graph/pie/Pie.vue.d.ts +155 -0
- package/types/graph/pie/index.d.ts +155 -0
- package/types/graph/pie/props.d.ts +72 -0
- package/types/graph/scatter/Scatter.vue.d.ts +155 -0
- package/types/graph/scatter/index.d.ts +155 -0
- package/types/graph/scatter/props.d.ts +72 -0
- package/types/map/map/props.d.ts +112 -112
- package/types/media/image/props.d.ts +52 -52
- package/types/table/table/Table.vue.d.ts +900 -79
- package/types/table/table/index.d.ts +899 -79
- package/types/table/table/props.d.ts +451 -39
- package/types/text/list/List.vue.d.ts +64 -64
- package/types/text/list/props.d.ts +64 -64
- package/types/text/proportion/Proportion.vue.d.ts +68 -68
- package/types/text/proportion/props.d.ts +68 -68
- package/types/text/text/Text.vue.d.ts +66 -66
- package/types/text/text/props.d.ts +66 -66
- package/types/text/time-display/props.d.ts +60 -60
package/dist/style.css
CHANGED
|
@@ -23,10 +23,10 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
23
23
|
overflow: hidden;
|
|
24
24
|
background-size: cover;
|
|
25
25
|
}
|
|
26
|
-
.skeleton-wrapper[data-v-
|
|
26
|
+
.skeleton-wrapper[data-v-e7487804] {
|
|
27
27
|
overflow: hidden;
|
|
28
28
|
}
|
|
29
|
-
.ecan-text[data-v-
|
|
29
|
+
.ecan-text[data-v-e7487804] {
|
|
30
30
|
overflow: hidden;
|
|
31
31
|
display: flex;
|
|
32
32
|
}
|
|
@@ -37,10 +37,10 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
37
37
|
overflow: hidden;
|
|
38
38
|
display: table-cell;
|
|
39
39
|
}
|
|
40
|
-
.ecan-list[data-v-
|
|
40
|
+
.ecan-list[data-v-461dbe78] {
|
|
41
41
|
overflow: hidden;
|
|
42
42
|
}
|
|
43
|
-
.ecan-list-content[data-v-
|
|
43
|
+
.ecan-list-content[data-v-461dbe78] {
|
|
44
44
|
width: 100%;
|
|
45
45
|
height: 100%;
|
|
46
46
|
overflow: auto;
|
|
@@ -48,7 +48,7 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
48
48
|
align-content: flex-start;
|
|
49
49
|
flex-wrap: wrap;
|
|
50
50
|
}
|
|
51
|
-
.title[data-v-
|
|
51
|
+
.title[data-v-461dbe78] {
|
|
52
52
|
position: absolute;
|
|
53
53
|
z-index: 9;
|
|
54
54
|
display: flex;
|
|
@@ -58,18 +58,18 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
58
58
|
font-size: 16px;
|
|
59
59
|
color: #ffffff;
|
|
60
60
|
}
|
|
61
|
-
.title-inner[data-v-
|
|
61
|
+
.title-inner[data-v-461dbe78] {
|
|
62
62
|
padding-left: 28px;
|
|
63
63
|
padding-right: 20px;
|
|
64
64
|
flex: 1;
|
|
65
65
|
display: flex;
|
|
66
66
|
height: 100%;
|
|
67
67
|
}
|
|
68
|
-
.title-placeholder[data-v-
|
|
68
|
+
.title-placeholder[data-v-461dbe78] {
|
|
69
69
|
width: 100%;
|
|
70
70
|
height: 32px;
|
|
71
71
|
}
|
|
72
|
-
.item[data-v-
|
|
72
|
+
.item[data-v-461dbe78] {
|
|
73
73
|
display: flex;
|
|
74
74
|
align-items: center;
|
|
75
75
|
height: 32px;
|
|
@@ -79,13 +79,13 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
79
79
|
font-size: 16px;
|
|
80
80
|
color: #ffffff;
|
|
81
81
|
}
|
|
82
|
-
.column[data-v-
|
|
82
|
+
.column[data-v-461dbe78] {
|
|
83
83
|
flex: 1;
|
|
84
84
|
overflow: hidden;
|
|
85
85
|
text-overflow: ellipsis;
|
|
86
86
|
white-space: nowrap;
|
|
87
87
|
}
|
|
88
|
-
.ranking[data-v-
|
|
88
|
+
.ranking[data-v-461dbe78] {
|
|
89
89
|
flex: 1;
|
|
90
90
|
display: flex;
|
|
91
91
|
align-items: center;
|
|
@@ -94,28 +94,28 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
94
94
|
text-overflow: ellipsis;
|
|
95
95
|
white-space: nowrap;
|
|
96
96
|
}
|
|
97
|
-
.icon[data-v-
|
|
97
|
+
.icon[data-v-461dbe78] {
|
|
98
98
|
width: 12px;
|
|
99
99
|
height: 8px;
|
|
100
100
|
background: #21BEF7;
|
|
101
101
|
margin-right: 17px;
|
|
102
102
|
opacity: 0.6;
|
|
103
103
|
}
|
|
104
|
-
.item:nth-child(2) .icon[data-v-
|
|
104
|
+
.item:nth-child(2) .icon[data-v-461dbe78] {
|
|
105
105
|
opacity: 0.8;
|
|
106
106
|
}
|
|
107
|
-
.item:first-child .icon[data-v-
|
|
107
|
+
.item:first-child .icon[data-v-461dbe78] {
|
|
108
108
|
opacity: 1;
|
|
109
109
|
}
|
|
110
|
-
.sort[data-v-
|
|
110
|
+
.sort[data-v-461dbe78] {
|
|
111
111
|
font-weight: 600;
|
|
112
112
|
}
|
|
113
|
-
.goUp[data-v-
|
|
113
|
+
.goUp[data-v-461dbe78] {
|
|
114
114
|
color: #FF512E;
|
|
115
115
|
display: flex;
|
|
116
116
|
align-items: center;
|
|
117
117
|
}
|
|
118
|
-
.goUp[data-v-
|
|
118
|
+
.goUp[data-v-461dbe78]:before {
|
|
119
119
|
content: '';
|
|
120
120
|
display: block;
|
|
121
121
|
background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAAV1BMVEUAAAD/WzT/WjP/WDD/WzT/WzP/WzT/WzT/WzT/WjT/WzT/WDT/YED/WzT/WzT/WjT/YED/WzT/WzT/WzT/XDT/WzT/WjX/WjP/XDT/XDT/WTL/Tif/WzReH8z5AAAAHHRSTlMA8RgS9W9YHbePZyME5sVjCP7bzcCxgndOQC4GFJJgKwAAAIJJREFUKM+Nkd0OgyAMRjvqcLA53fzXvv9zaokmxq8mnsue5ACFDjiy+XyjLZ7yyK35OxN5mSFZKa2QojEIKRhrZKM0QnsMQxirmJ0kBubTIZvAtUyiFAT4JFoUIYmIotZ5xjDPfyoCAV16nMPdFir8xZ16nM//tePtXw2ODOJY0V0WqQwM2rgKrU0AAAAASUVORK5CYII=");
|
|
@@ -125,12 +125,12 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
125
125
|
background-size: cover;
|
|
126
126
|
margin-right: 2px;
|
|
127
127
|
}
|
|
128
|
-
.goDown[data-v-
|
|
128
|
+
.goDown[data-v-461dbe78] {
|
|
129
129
|
color: #00F7B4;
|
|
130
130
|
display: flex;
|
|
131
131
|
align-items: center;
|
|
132
132
|
}
|
|
133
|
-
.goDown[data-v-
|
|
133
|
+
.goDown[data-v-461dbe78]:before {
|
|
134
134
|
content: '';
|
|
135
135
|
display: block;
|
|
136
136
|
background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAAaVBMVEUAAAAA+b0A+LwA+L0A/6AA+LwA+L0A+L0A+b0A+LwA/78A+LwA+L0A+LwA+LwA+b0A+LsA970A+LwA+r0A9boA/7YA+LwA+LwA+LwA+L0A97wA+bwA970A970A+bwA+bwA+LsA9rkA+LzcCa+5AAAAInRSTlMAd/uVAvjYxCsiDvPp37F7aWBMNBgK7s/NvKidh4NXUEcdp9A1SAAAAI5JREFUKM+l0UcOwzAMRFGqWZbcW3rl/Q8ZhUGKMN7lLedD4EKUi/3BEIrGsQu432pmPuF+1WnfRNjLipMz7HbHT3cIF9n3BLYSerzAooSgZNcWQiuhIdBI8JQblNISCqXU/BNG/mqzJ+az13MWluIdRspNmgV+Rvc6vkCwPu1uIhQq5o7WDOwtrToG+ssDeh4QPgfT2X0AAAAASUVORK5CYII=");
|
|
@@ -140,7 +140,7 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
140
140
|
background-size: cover;
|
|
141
141
|
margin-right: 2px;
|
|
142
142
|
}
|
|
143
|
-
.empty[data-v-
|
|
143
|
+
.empty[data-v-461dbe78] {
|
|
144
144
|
text-align: center;
|
|
145
145
|
margin-top: 15%;
|
|
146
146
|
}
|
|
@@ -171,14 +171,14 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
171
171
|
[datav-theme='darkBlue'] .ecan-list .empty {
|
|
172
172
|
color: #ffffff;
|
|
173
173
|
}
|
|
174
|
-
.ecan-proportion[data-v-
|
|
174
|
+
.ecan-proportion[data-v-02b500fa] {
|
|
175
175
|
overflow: hidden;
|
|
176
176
|
}
|
|
177
|
-
.progress[data-v-
|
|
177
|
+
.progress[data-v-02b500fa] {
|
|
178
178
|
width: 100%;
|
|
179
179
|
height: 100%;
|
|
180
180
|
}
|
|
181
|
-
.format[data-v-
|
|
181
|
+
.format[data-v-02b500fa] {
|
|
182
182
|
margin: 0 auto;
|
|
183
183
|
}
|
|
184
184
|
.input[data-v-506cf42a] {
|
|
@@ -248,10 +248,10 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
248
248
|
[datav-theme='darkBlue'] .ecan-date-picker-dropdown .ant-picker-cell:hover:not(.ant-picker-cell-selected):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end):not(.ant-picker-cell-range-hover-start):not(.ant-picker-cell-range-hover-end) .ant-picker-cell-inner {
|
|
249
249
|
background: #1890ff;
|
|
250
250
|
}
|
|
251
|
-
.ecan-select[data-v-
|
|
251
|
+
.ecan-select[data-v-d70a9a94] .ant-select-selector {
|
|
252
252
|
height: 100% !important;
|
|
253
253
|
}
|
|
254
|
-
.select[data-v-
|
|
254
|
+
.select[data-v-d70a9a94] {
|
|
255
255
|
width: 100%;
|
|
256
256
|
height: 100%;
|
|
257
257
|
}
|
|
@@ -315,7 +315,7 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
315
315
|
[datav-theme='darkBlue'] .ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
|
|
316
316
|
background: #1f63a3;
|
|
317
317
|
}
|
|
318
|
-
.range-picker[data-v-
|
|
318
|
+
.range-picker[data-v-61322f3d] {
|
|
319
319
|
width: 100%;
|
|
320
320
|
height: 100%;
|
|
321
321
|
}
|
|
@@ -386,16 +386,16 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
386
386
|
[datav-theme='darkBlue'] .ecan-range-picker-dropdown .ant-picker-cell-disabled::before {
|
|
387
387
|
background: #333;
|
|
388
388
|
}
|
|
389
|
-
.button
|
|
389
|
+
.ecan-button .ant-btn {
|
|
390
390
|
width: 100%;
|
|
391
391
|
height: 100%;
|
|
392
392
|
}
|
|
393
|
-
.ecan-tabs[data-v-
|
|
393
|
+
.ecan-tabs[data-v-5aeec0ae] {
|
|
394
394
|
box-sizing: border-box;
|
|
395
395
|
color: #333333;
|
|
396
396
|
display: flex;
|
|
397
397
|
}
|
|
398
|
-
.tab[data-v-
|
|
398
|
+
.tab[data-v-5aeec0ae] {
|
|
399
399
|
flex: 1;
|
|
400
400
|
display: flex;
|
|
401
401
|
justify-content: center;
|
|
@@ -403,7 +403,7 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
403
403
|
background-size: 100% 100%;
|
|
404
404
|
background-repeat: no-repeat;
|
|
405
405
|
}
|
|
406
|
-
.tab[data-v-
|
|
406
|
+
.tab[data-v-5aeec0ae]:last-child {
|
|
407
407
|
margin-right: 0 !important;
|
|
408
408
|
}
|
|
409
409
|
.full-modal .ant-modal {
|
|
@@ -420,14 +420,79 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
420
420
|
.full-modal .ant-modal-body {
|
|
421
421
|
flex: 1;
|
|
422
422
|
}
|
|
423
|
-
.full-modal .modal-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
423
|
+
.full-modal .ant-modal-body {
|
|
424
|
+
padding: 45px 30px 0;
|
|
425
|
+
}
|
|
426
|
+
.full-modal .ant-modal {
|
|
427
|
+
max-width: 100%;
|
|
428
|
+
top: 0;
|
|
429
|
+
padding-bottom: 0;
|
|
430
|
+
margin: 0;
|
|
431
|
+
}
|
|
432
|
+
.full-modal .ant-modal-content {
|
|
433
|
+
display: flex;
|
|
434
|
+
flex-direction: column;
|
|
435
|
+
height: calc(100vh);
|
|
436
|
+
}
|
|
437
|
+
.full-modal .ant-modal-body {
|
|
438
|
+
flex: 1;
|
|
439
|
+
}
|
|
440
|
+
.full-modal .ant-modal-body {
|
|
441
|
+
padding: 45px 30px 0;
|
|
442
|
+
}
|
|
443
|
+
.full-modal .ant-modal {
|
|
444
|
+
max-width: 100%;
|
|
445
|
+
top: 0;
|
|
446
|
+
padding-bottom: 0;
|
|
447
|
+
margin: 0;
|
|
448
|
+
}
|
|
449
|
+
.full-modal .ant-modal-content {
|
|
450
|
+
display: flex;
|
|
451
|
+
flex-direction: column;
|
|
452
|
+
height: calc(100vh);
|
|
453
|
+
}
|
|
454
|
+
.full-modal .ant-modal-body {
|
|
455
|
+
flex: 1;
|
|
456
|
+
}
|
|
457
|
+
.full-modal .ant-modal-body {
|
|
458
|
+
padding: 45px 30px 0;
|
|
428
459
|
}
|
|
429
|
-
.
|
|
430
|
-
|
|
460
|
+
.full-modal .ant-modal {
|
|
461
|
+
max-width: 100%;
|
|
462
|
+
top: 0;
|
|
463
|
+
padding-bottom: 0;
|
|
464
|
+
margin: 0;
|
|
465
|
+
}
|
|
466
|
+
.full-modal .ant-modal-content {
|
|
467
|
+
display: flex;
|
|
468
|
+
flex-direction: column;
|
|
469
|
+
height: calc(100vh);
|
|
470
|
+
}
|
|
471
|
+
.full-modal .ant-modal-body {
|
|
472
|
+
flex: 1;
|
|
473
|
+
}
|
|
474
|
+
.full-modal .ant-modal-body {
|
|
475
|
+
padding: 45px 30px 0;
|
|
476
|
+
}
|
|
477
|
+
.full-modal .ant-modal {
|
|
478
|
+
max-width: 100%;
|
|
479
|
+
top: 0;
|
|
480
|
+
padding-bottom: 0;
|
|
481
|
+
margin: 0;
|
|
482
|
+
}
|
|
483
|
+
.full-modal .ant-modal-content {
|
|
484
|
+
display: flex;
|
|
485
|
+
flex-direction: column;
|
|
486
|
+
height: calc(100vh);
|
|
487
|
+
}
|
|
488
|
+
.full-modal .ant-modal-body {
|
|
489
|
+
flex: 1;
|
|
490
|
+
}
|
|
491
|
+
.full-modal .ant-modal-body {
|
|
492
|
+
padding: 45px 30px 0;
|
|
493
|
+
}
|
|
494
|
+
.top-title[data-v-3c3b861e],
|
|
495
|
+
.no-title[data-v-3c3b861e] {
|
|
431
496
|
border: 1px solid rgba(55, 85, 218, 0.3);
|
|
432
497
|
background: rgba(7, 22, 85, 0.8);
|
|
433
498
|
position: relative;
|
|
@@ -435,8 +500,8 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
435
500
|
width: 100%;
|
|
436
501
|
height: 100%;
|
|
437
502
|
}
|
|
438
|
-
.top-title .border-item[data-v-
|
|
439
|
-
.no-title .border-item[data-v-
|
|
503
|
+
.top-title .border-item[data-v-3c3b861e],
|
|
504
|
+
.no-title .border-item[data-v-3c3b861e] {
|
|
440
505
|
position: absolute;
|
|
441
506
|
z-index: 2;
|
|
442
507
|
border-color: #50FCFC;
|
|
@@ -444,8 +509,8 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
444
509
|
width: 13px;
|
|
445
510
|
height: 11px;
|
|
446
511
|
}
|
|
447
|
-
.top-title .top-left[data-v-
|
|
448
|
-
.no-title .top-left[data-v-
|
|
512
|
+
.top-title .top-left[data-v-3c3b861e],
|
|
513
|
+
.no-title .top-left[data-v-3c3b861e] {
|
|
449
514
|
top: 0;
|
|
450
515
|
left: 0;
|
|
451
516
|
border-top-width: 1px;
|
|
@@ -453,8 +518,8 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
453
518
|
border-bottom-width: 0;
|
|
454
519
|
border-left-width: 1px;
|
|
455
520
|
}
|
|
456
|
-
.top-title .top-right[data-v-
|
|
457
|
-
.no-title .top-right[data-v-
|
|
521
|
+
.top-title .top-right[data-v-3c3b861e],
|
|
522
|
+
.no-title .top-right[data-v-3c3b861e] {
|
|
458
523
|
top: 0;
|
|
459
524
|
right: -2px;
|
|
460
525
|
border-top-width: 1px;
|
|
@@ -462,8 +527,8 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
462
527
|
border-bottom-width: 0;
|
|
463
528
|
border-left-width: 0;
|
|
464
529
|
}
|
|
465
|
-
.top-title .bottom-left[data-v-
|
|
466
|
-
.no-title .bottom-left[data-v-
|
|
530
|
+
.top-title .bottom-left[data-v-3c3b861e],
|
|
531
|
+
.no-title .bottom-left[data-v-3c3b861e] {
|
|
467
532
|
bottom: -2px;
|
|
468
533
|
left: 0;
|
|
469
534
|
border-top-width: 0;
|
|
@@ -471,8 +536,8 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
471
536
|
border-bottom-width: 1px;
|
|
472
537
|
border-left-width: 1px;
|
|
473
538
|
}
|
|
474
|
-
.top-title .bottom-right[data-v-
|
|
475
|
-
.no-title .bottom-right[data-v-
|
|
539
|
+
.top-title .bottom-right[data-v-3c3b861e],
|
|
540
|
+
.no-title .bottom-right[data-v-3c3b861e] {
|
|
476
541
|
bottom: -2px;
|
|
477
542
|
right: -2px;
|
|
478
543
|
border-top-width: 0;
|
|
@@ -480,8 +545,8 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
480
545
|
border-bottom-width: 1px;
|
|
481
546
|
border-left-width: 0;
|
|
482
547
|
}
|
|
483
|
-
.top-title .title-item-wrapper[data-v-
|
|
484
|
-
.no-title .title-item-wrapper[data-v-
|
|
548
|
+
.top-title .title-item-wrapper[data-v-3c3b861e],
|
|
549
|
+
.no-title .title-item-wrapper[data-v-3c3b861e] {
|
|
485
550
|
width: 100%;
|
|
486
551
|
padding: 5px 0;
|
|
487
552
|
background-image: url("data:image/png;base64,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");
|
|
@@ -489,43 +554,43 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
489
554
|
display: grid;
|
|
490
555
|
place-content: center;
|
|
491
556
|
}
|
|
492
|
-
.top-title .title-item[data-v-
|
|
493
|
-
.no-title .title-item[data-v-
|
|
557
|
+
.top-title .title-item[data-v-3c3b861e],
|
|
558
|
+
.no-title .title-item[data-v-3c3b861e] {
|
|
494
559
|
display: flex;
|
|
495
560
|
align-items: center;
|
|
496
561
|
}
|
|
497
|
-
.top-title .title[data-v-
|
|
498
|
-
.no-title .title[data-v-
|
|
562
|
+
.top-title .title[data-v-3c3b861e],
|
|
563
|
+
.no-title .title[data-v-3c3b861e] {
|
|
499
564
|
padding: 0 17px;
|
|
500
565
|
color: #d5fdfd;
|
|
501
566
|
background: linear-gradient(0deg, #01aaff, #00eaff);
|
|
502
567
|
-webkit-background-clip: text;
|
|
503
568
|
-webkit-text-fill-color: transparent;
|
|
504
569
|
}
|
|
505
|
-
.top-title .title-decoration-left[data-v-
|
|
506
|
-
.no-title .title-decoration-left[data-v-
|
|
570
|
+
.top-title .title-decoration-left[data-v-3c3b861e],
|
|
571
|
+
.no-title .title-decoration-left[data-v-3c3b861e] {
|
|
507
572
|
width: 58px;
|
|
508
573
|
height: 14px;
|
|
509
574
|
}
|
|
510
|
-
.top-title .title-decoration-right[data-v-
|
|
511
|
-
.no-title .title-decoration-right[data-v-
|
|
575
|
+
.top-title .title-decoration-right[data-v-3c3b861e],
|
|
576
|
+
.no-title .title-decoration-right[data-v-3c3b861e] {
|
|
512
577
|
width: 58px;
|
|
513
578
|
height: 14px;
|
|
514
579
|
}
|
|
515
|
-
.only-border[data-v-
|
|
580
|
+
.only-border[data-v-3c3b861e] {
|
|
516
581
|
border: 2px solid #375A8899;
|
|
517
582
|
border-radius: 8px;
|
|
518
583
|
width: 100%;
|
|
519
584
|
height: 100%;
|
|
520
585
|
}
|
|
521
|
-
.left-title[data-v-
|
|
586
|
+
.left-title[data-v-3c3b861e] {
|
|
522
587
|
position: relative;
|
|
523
588
|
width: 100%;
|
|
524
589
|
height: 100%;
|
|
525
590
|
border: 2px solid #375A8899;
|
|
526
591
|
border-radius: 8px;
|
|
527
592
|
}
|
|
528
|
-
.left-title .title[data-v-
|
|
593
|
+
.left-title .title[data-v-3c3b861e] {
|
|
529
594
|
position: absolute;
|
|
530
595
|
left: -33px;
|
|
531
596
|
top: -14px;
|
|
@@ -540,7 +605,7 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
540
605
|
font-weight: 500;
|
|
541
606
|
text-align: center;
|
|
542
607
|
}
|
|
543
|
-
.left-title .title span[data-v-
|
|
608
|
+
.left-title .title span[data-v-3c3b861e] {
|
|
544
609
|
writing-mode: vertical-lr;
|
|
545
610
|
}
|
|
546
611
|
.contain[data-v-0b2fdae1] {
|
|
@@ -596,34 +661,33 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
596
661
|
font-size: 16px;
|
|
597
662
|
color: #333;
|
|
598
663
|
}
|
|
599
|
-
.table[data-v-
|
|
664
|
+
.table[data-v-56b87792] {
|
|
600
665
|
width: 100%;
|
|
601
|
-
height: 100%;
|
|
602
666
|
}
|
|
603
|
-
.goUp[data-v-
|
|
667
|
+
.goUp[data-v-56b87792] {
|
|
604
668
|
color: #FF512E;
|
|
605
669
|
display: flex;
|
|
606
670
|
align-items: center;
|
|
607
671
|
}
|
|
608
|
-
.goUp[data-v-
|
|
672
|
+
.goUp[data-v-56b87792]:before {
|
|
609
673
|
content: '';
|
|
610
674
|
display: block;
|
|
611
|
-
background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAAV1BMVEUAAAD/WzT/WjP/WDD/WzT/WzP/WzT/WzT/WzT/WjT/WzT/WDT/YED/WzT/WzT/WjT/YED/WzT/WzT/WzT/XDT/WzT/WjX/WjP/XDT/XDT/WTL/Tif/WzReH8z5AAAAHHRSTlMA8RgS9W9YHbePZyME5sVjCP7bzcCxgndOQC4GFJJgKwAAAIJJREFUKM+Nkd0OgyAMRjvqcLA53fzXvv9zaokmxq8mnsue5ACFDjiy+XyjLZ7yyK35OxN5mSFZKa2QojEIKRhrZKM0QnsMQxirmJ0kBubTIZvAtUyiFAT4JFoUIYmIotZ5xjDPfyoCAV16nMPdFir8xZ16nM//tePtXw2ODOJY0V0WqQwM2rgKrU0AAAAASUVORK5CYII=");
|
|
675
|
+
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAAV1BMVEUAAAD/WzT/WjP/WDD/WzT/WzP/WzT/WzT/WzT/WjT/WzT/WDT/YED/WzT/WzT/WjT/YED/WzT/WzT/WzT/XDT/WzT/WjX/WjP/XDT/XDT/WTL/Tif/WzReH8z5AAAAHHRSTlMA8RgS9W9YHbePZyME5sVjCP7bzcCxgndOQC4GFJJgKwAAAIJJREFUKM+Nkd0OgyAMRjvqcLA53fzXvv9zaokmxq8mnsue5ACFDjiy+XyjLZ7yyK35OxN5mSFZKa2QojEIKRhrZKM0QnsMQxirmJ0kBubTIZvAtUyiFAT4JFoUIYmIotZ5xjDPfyoCAV16nMPdFir8xZ16nM//tePtXw2ODOJY0V0WqQwM2rgKrU0AAAAASUVORK5CYII=");
|
|
612
676
|
width: 12px;
|
|
613
677
|
height: 12px;
|
|
614
678
|
background-repeat: no-repeat;
|
|
615
679
|
background-size: cover;
|
|
616
680
|
margin-right: 2px;
|
|
617
681
|
}
|
|
618
|
-
.goDown[data-v-
|
|
682
|
+
.goDown[data-v-56b87792] {
|
|
619
683
|
color: #00F7B4;
|
|
620
684
|
display: flex;
|
|
621
685
|
align-items: center;
|
|
622
686
|
}
|
|
623
|
-
.goDown[data-v-
|
|
687
|
+
.goDown[data-v-56b87792]:before {
|
|
624
688
|
content: '';
|
|
625
689
|
display: block;
|
|
626
|
-
background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAAaVBMVEUAAAAA+b0A+LwA+L0A/6AA+LwA+L0A+L0A+b0A+LwA/78A+LwA+L0A+LwA+LwA+b0A+LsA970A+LwA+r0A9boA/7YA+LwA+LwA+LwA+L0A97wA+bwA970A970A+bwA+bwA+LsA9rkA+LzcCa+5AAAAInRSTlMAd/uVAvjYxCsiDvPp37F7aWBMNBgK7s/NvKidh4NXUEcdp9A1SAAAAI5JREFUKM+l0UcOwzAMRFGqWZbcW3rl/Q8ZhUGKMN7lLedD4EKUi/3BEIrGsQu432pmPuF+1WnfRNjLipMz7HbHT3cIF9n3BLYSerzAooSgZNcWQiuhIdBI8JQblNISCqXU/BNG/mqzJ+az13MWluIdRspNmgV+Rvc6vkCwPu1uIhQq5o7WDOwtrToG+ssDeh4QPgfT2X0AAAAASUVORK5CYII=");
|
|
690
|
+
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAAaVBMVEUAAAAA+b0A+LwA+L0A/6AA+LwA+L0A+L0A+b0A+LwA/78A+LwA+L0A+LwA+LwA+b0A+LsA970A+LwA+r0A9boA/7YA+LwA+LwA+LwA+L0A97wA+bwA970A970A+bwA+bwA+LsA9rkA+LzcCa+5AAAAInRSTlMAd/uVAvjYxCsiDvPp37F7aWBMNBgK7s/NvKidh4NXUEcdp9A1SAAAAI5JREFUKM+l0UcOwzAMRFGqWZbcW3rl/Q8ZhUGKMN7lLedD4EKUi/3BEIrGsQu432pmPuF+1WnfRNjLipMz7HbHT3cIF9n3BLYSerzAooSgZNcWQiuhIdBI8JQblNISCqXU/BNG/mqzJ+az13MWluIdRspNmgV+Rvc6vkCwPu1uIhQq5o7WDOwtrToG+ssDeh4QPgfT2X0AAAAASUVORK5CYII=");
|
|
627
691
|
width: 12px;
|
|
628
692
|
height: 12px;
|
|
629
693
|
background-repeat: no-repeat;
|
|
@@ -663,9 +727,6 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
663
727
|
.ecan-table .ant-table-bordered .ant-table-cell {
|
|
664
728
|
border-right: 1px solid #f0f0f0 !important;
|
|
665
729
|
}
|
|
666
|
-
.ecan-table .ant-pagination-item-link {
|
|
667
|
-
border: 1px solid #d9d9d9 !important;
|
|
668
|
-
}
|
|
669
730
|
.ecan-table .anticon {
|
|
670
731
|
color: rgba(0, 0, 0, 0.65) !important;
|
|
671
732
|
}
|
|
@@ -702,7 +763,6 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
702
763
|
}
|
|
703
764
|
[datav-theme='darkBlue'] .ecan-table .ant-pagination-item-link {
|
|
704
765
|
background: #17338c !important;
|
|
705
|
-
border: 1px solid #243c8e !important;
|
|
706
766
|
}
|
|
707
767
|
[datav-theme='darkBlue'] .ecan-table .ant-pagination-item {
|
|
708
768
|
background: #17338c !important;
|
package/package.json
CHANGED
|
@@ -2,6 +2,7 @@ export declare const EVENT_BUS = "EVENT_BUS";
|
|
|
2
2
|
export declare const GLOBAL_CONFIG = "GLOBAL_CONFIG";
|
|
3
3
|
export declare const GLOBAL_MODEL = "GLOBAL_MODEL";
|
|
4
4
|
export declare const REQUEST_MODEL = "REQUEST_MODEL";
|
|
5
|
+
export declare const GLOBAL_TOKEN = "GLOBAL_TOKEN";
|
|
6
|
+
export declare const INDICATOR_URL: any;
|
|
5
7
|
export declare const UPLOAD_PATH: any;
|
|
6
8
|
export declare const BASE_URL: any;
|
|
7
|
-
export declare const INDICATOR_URL: any;
|