@ued_fpi/data-visual 1.4.24 → 1.4.25
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/es/ipes/src/PersonnelLocation/index.vue.mjs +28 -1
- package/dist/es/style.css +2 -2
- package/dist/es/theme/element-dark.css.mjs +1 -1
- package/dist/lib/ipes/src/PersonnelLocation/index.vue.js +28 -1
- package/dist/lib/style.css +2 -2
- package/dist/lib/theme/element-dark.css.js +1 -1
- package/dist/style/base.css +1 -0
- package/dist/style/style-ipes.css +1 -1
- package/package.json +2 -2
|
@@ -21,7 +21,34 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
21
21
|
...__default__,
|
|
22
22
|
emits: ["openPopup"],
|
|
23
23
|
setup(__props, { emit }) {
|
|
24
|
-
const colors = [
|
|
24
|
+
const colors = [
|
|
25
|
+
"var(--dv-color-danger)",
|
|
26
|
+
"var(--dv-color-warning)",
|
|
27
|
+
"var(--dv-color-index)",
|
|
28
|
+
"var(--dv-color-success)",
|
|
29
|
+
"#409eff",
|
|
30
|
+
"#e6a23c",
|
|
31
|
+
"#ff6b6b",
|
|
32
|
+
// 高饱和红
|
|
33
|
+
"#4ecdc4",
|
|
34
|
+
// 青绿
|
|
35
|
+
"#45b7d1",
|
|
36
|
+
// 天蓝
|
|
37
|
+
"#96ceb4",
|
|
38
|
+
// 薄荷绿
|
|
39
|
+
"#feca57",
|
|
40
|
+
// 亮黄
|
|
41
|
+
"#ff9ff3",
|
|
42
|
+
// 粉紫
|
|
43
|
+
"#54a0ff",
|
|
44
|
+
// 亮蓝
|
|
45
|
+
"#5f27cd",
|
|
46
|
+
// 深紫
|
|
47
|
+
"#00d2d3",
|
|
48
|
+
// 青蓝
|
|
49
|
+
"#ff9f43"
|
|
50
|
+
// 橙黄
|
|
51
|
+
];
|
|
25
52
|
const totalCount = ref(0);
|
|
26
53
|
const legendData = ref([
|
|
27
54
|
// {
|