@ued_fpi/data-visual 1.2.24 → 1.2.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/BasicSecurityManagement/index.vue.mjs +5 -1
- package/dist/es/ipes/src/DisasterWarning/index.vue.mjs +2 -9
- package/dist/es/ipes/src/EmengercyPlan/index.vue.mjs +5 -1
- package/dist/es/ipes/src/EmergencyResources/index.vue.mjs +27 -82
- package/dist/es/ipes/src/EmergencyWatch/index.vue.mjs +26 -24
- package/dist/es/ipes/src/EnterpriseProtectionCode/index.vue.mjs +2 -9
- package/dist/es/ipes/src/ParkingSpot/index.vue.mjs +3 -3
- package/dist/es/ipes/src/PerformanceWarrantyResponsibilities/index.vue.mjs +2 -2
- package/dist/es/ipes/src/VocsControl/index.vue.mjs +2 -2
- package/dist/es/style.css +1 -1
- package/dist/lib/ipes/src/BasicSecurityManagement/index.vue.js +5 -1
- package/dist/lib/ipes/src/DisasterWarning/index.vue.js +1 -8
- package/dist/lib/ipes/src/EmengercyPlan/index.vue.js +5 -1
- package/dist/lib/ipes/src/EmergencyResources/index.vue.js +26 -81
- package/dist/lib/ipes/src/EmergencyWatch/index.vue.js +26 -24
- package/dist/lib/ipes/src/EnterpriseProtectionCode/index.vue.js +2 -9
- package/dist/lib/ipes/src/ParkingSpot/index.vue.js +3 -3
- package/dist/lib/ipes/src/PerformanceWarrantyResponsibilities/index.vue.js +2 -2
- package/dist/lib/ipes/src/VocsControl/index.vue.js +2 -2
- package/dist/lib/style.css +1 -1
- package/dist/style/style-ipes.css +1 -1
- package/package.json +2 -2
- package/dist/es/ipes/src/EmergencyResources/images/expert.png.mjs +0 -3
- package/dist/es/ipes/src/EmergencyResources/images/materials.light.png.mjs +0 -3
- package/dist/es/ipes/src/EmergencyResources/images/materials.png.mjs +0 -3
- package/dist/es/ipes/src/EmergencyResources/images/personnel.light.png.mjs +0 -3
- package/dist/es/ipes/src/EmergencyResources/images/personnel.png.mjs +0 -3
- package/dist/es/ipes/src/EmergencyResources/images/preplan.light.png.mjs +0 -3
- package/dist/es/ipes/src/EmergencyResources/images/preplan.png.mjs +0 -3
- package/dist/es/ipes/src/EmergencyResources/images/protected.png.mjs +0 -3
- package/dist/es/ipes/src/EmergencyResources/images/shelter.light.png.mjs +0 -3
- package/dist/es/ipes/src/EmergencyResources/images/shelter.png.mjs +0 -3
- package/dist/es/ipes/src/EmergencyResources/images/store.light.png.mjs +0 -3
- package/dist/es/ipes/src/EmergencyResources/images/store.png.mjs +0 -3
- package/dist/es/ipes/src/EmergencyResources/images/team.light.png.mjs +0 -3
- package/dist/es/ipes/src/EmergencyResources/images/team.png.mjs +0 -3
- package/dist/lib/ipes/src/EmergencyResources/images/expert.png.js +0 -7
- package/dist/lib/ipes/src/EmergencyResources/images/materials.light.png.js +0 -7
- package/dist/lib/ipes/src/EmergencyResources/images/materials.png.js +0 -7
- package/dist/lib/ipes/src/EmergencyResources/images/personnel.light.png.js +0 -7
- package/dist/lib/ipes/src/EmergencyResources/images/personnel.png.js +0 -7
- package/dist/lib/ipes/src/EmergencyResources/images/preplan.light.png.js +0 -7
- package/dist/lib/ipes/src/EmergencyResources/images/preplan.png.js +0 -7
- package/dist/lib/ipes/src/EmergencyResources/images/protected.png.js +0 -7
- package/dist/lib/ipes/src/EmergencyResources/images/shelter.light.png.js +0 -7
- package/dist/lib/ipes/src/EmergencyResources/images/shelter.png.js +0 -7
- package/dist/lib/ipes/src/EmergencyResources/images/store.light.png.js +0 -7
- package/dist/lib/ipes/src/EmergencyResources/images/store.png.js +0 -7
- package/dist/lib/ipes/src/EmergencyResources/images/team.light.png.js +0 -7
- package/dist/lib/ipes/src/EmergencyResources/images/team.png.js +0 -7
|
@@ -46,6 +46,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
46
46
|
function getShowData(value) {
|
|
47
47
|
return value == null ? "0" : value;
|
|
48
48
|
}
|
|
49
|
+
function replaceUnit(value) {
|
|
50
|
+
const rate = value || 0;
|
|
51
|
+
return +rate.toString().replace("%", "");
|
|
52
|
+
}
|
|
49
53
|
onMounted(() => {
|
|
50
54
|
getCommitmentData();
|
|
51
55
|
});
|
|
@@ -68,7 +72,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
68
72
|
createElementVNode("div", _hoisted_7, [
|
|
69
73
|
_hoisted_8,
|
|
70
74
|
createElementVNode("div", _hoisted_9, [
|
|
71
|
-
createElementVNode("div", _hoisted_10, toDisplayString(
|
|
75
|
+
createElementVNode("div", _hoisted_10, toDisplayString(replaceUnit(commitmentData.value.companyCompletionRate)), 1),
|
|
72
76
|
_hoisted_11
|
|
73
77
|
])
|
|
74
78
|
])
|
|
@@ -51,7 +51,7 @@ import __vite_glob_0_49 from './images/unknown.png.mjs';
|
|
|
51
51
|
import __vite_glob_0_50 from './images/wild_fire1.png.mjs';
|
|
52
52
|
import __vite_glob_0_51 from './images/wild_fire2.png.mjs';
|
|
53
53
|
import __vite_glob_0_52 from './images/wild_fire3.png.mjs';
|
|
54
|
-
import { defineComponent, ref, watch, onMounted, openBlock, createElementBlock, createVNode, unref,
|
|
54
|
+
import { defineComponent, ref, watch, onMounted, openBlock, createElementBlock, createVNode, unref, withCtx, Fragment, renderList, createElementVNode, toDisplayString } from 'vue';
|
|
55
55
|
import { FpiElRolling } from '@ued_fpi/element-plus-expand';
|
|
56
56
|
import dayjs from 'dayjs';
|
|
57
57
|
import requestControl from '../../service/request.mjs';
|
|
@@ -77,8 +77,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
77
77
|
setup(__props) {
|
|
78
78
|
const props = __props;
|
|
79
79
|
const disasterList = ref([]);
|
|
80
|
-
const isRolling = ref(false);
|
|
81
|
-
const actionType = ref("none");
|
|
82
80
|
async function getData() {
|
|
83
81
|
try {
|
|
84
82
|
const { data } = await requestControl({
|
|
@@ -103,8 +101,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
103
101
|
);
|
|
104
102
|
});
|
|
105
103
|
disasterList.value = arr;
|
|
106
|
-
isRolling.value = disasterList.value.length > 2;
|
|
107
|
-
actionType.value = disasterList.value.length > 2 ? "hover" : "none";
|
|
108
104
|
} catch (error) {
|
|
109
105
|
console.log(error);
|
|
110
106
|
}
|
|
@@ -118,9 +114,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
118
114
|
return (_ctx, _cache) => {
|
|
119
115
|
return openBlock(), createElementBlock("div", _hoisted_1, [
|
|
120
116
|
createVNode(unref(FpiElRolling), {
|
|
121
|
-
modelValue: unref(isRolling),
|
|
122
|
-
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(isRolling) ? isRolling.value = $event : null),
|
|
123
|
-
action: unref(actionType),
|
|
124
117
|
class: "box",
|
|
125
118
|
direction: "y",
|
|
126
119
|
time: 10
|
|
@@ -142,7 +135,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
142
135
|
}), 128))
|
|
143
136
|
]),
|
|
144
137
|
_: 1
|
|
145
|
-
}
|
|
138
|
+
})
|
|
146
139
|
]);
|
|
147
140
|
};
|
|
148
141
|
}
|
|
@@ -44,6 +44,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
44
44
|
function getShowData(value) {
|
|
45
45
|
return value == null ? "0" : value;
|
|
46
46
|
}
|
|
47
|
+
function replaceUnit(value) {
|
|
48
|
+
const rate = value || 0;
|
|
49
|
+
return +rate.toString().replace("%", "");
|
|
50
|
+
}
|
|
47
51
|
onMounted(() => {
|
|
48
52
|
getCommitmentData();
|
|
49
53
|
});
|
|
@@ -66,7 +70,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
66
70
|
createElementVNode("div", _hoisted_7, [
|
|
67
71
|
_hoisted_8,
|
|
68
72
|
createElementVNode("div", _hoisted_9, [
|
|
69
|
-
createElementVNode("div", _hoisted_10, toDisplayString(
|
|
73
|
+
createElementVNode("div", _hoisted_10, toDisplayString(replaceUnit(commitmentData.value.structuredPlanRate)), 1),
|
|
70
74
|
_hoisted_11
|
|
71
75
|
])
|
|
72
76
|
])
|
|
@@ -1,18 +1,6 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import __vite_glob_0_3 from './images/personnel.light.png.mjs';
|
|
5
|
-
import __vite_glob_0_4 from './images/personnel.png.mjs';
|
|
6
|
-
import __vite_glob_0_5 from './images/preplan.light.png.mjs';
|
|
7
|
-
import __vite_glob_0_6 from './images/preplan.png.mjs';
|
|
8
|
-
import __vite_glob_0_7 from './images/protected.png.mjs';
|
|
9
|
-
import __vite_glob_0_8 from './images/shelter.light.png.mjs';
|
|
10
|
-
import __vite_glob_0_9 from './images/shelter.png.mjs';
|
|
11
|
-
import __vite_glob_0_10 from './images/store.light.png.mjs';
|
|
12
|
-
import __vite_glob_0_11 from './images/store.png.mjs';
|
|
13
|
-
import __vite_glob_0_12 from './images/team.light.png.mjs';
|
|
14
|
-
import __vite_glob_0_13 from './images/team.png.mjs';
|
|
15
|
-
import { defineComponent, openBlock, createElementBlock, createElementVNode, Fragment, renderList, toDisplayString } from 'vue';
|
|
1
|
+
import { defineComponent, ref, onMounted, openBlock, createElementBlock, createElementVNode, Fragment, renderList, unref, toDisplayString } from 'vue';
|
|
2
|
+
import requestControl from '../../service/request.mjs';
|
|
3
|
+
import { useThemeHook } from '../../../utils.mjs';
|
|
16
4
|
|
|
17
5
|
const _hoisted_1 = { class: "dv-ipes-emergency-resources" };
|
|
18
6
|
const _hoisted_2 = { class: "list-content" };
|
|
@@ -26,86 +14,43 @@ const __default__ = {
|
|
|
26
14
|
};
|
|
27
15
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
28
16
|
...__default__,
|
|
29
|
-
props: {
|
|
30
|
-
emSoueceData: { default: () => [
|
|
31
|
-
{
|
|
32
|
-
label: "应急预案",
|
|
33
|
-
unit: "个",
|
|
34
|
-
icon: "preplan",
|
|
35
|
-
key: "plan",
|
|
36
|
-
count: 0
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
label: "应急专家",
|
|
40
|
-
unit: "人",
|
|
41
|
-
icon: "expert",
|
|
42
|
-
key: "professor",
|
|
43
|
-
count: 0
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
label: "应急队伍",
|
|
47
|
-
unit: "支",
|
|
48
|
-
icon: "team",
|
|
49
|
-
key: "team",
|
|
50
|
-
count: 0
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
label: "应急人员",
|
|
54
|
-
unit: "人",
|
|
55
|
-
icon: "personnel",
|
|
56
|
-
key: "staff",
|
|
57
|
-
count: 0
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
label: "物资库",
|
|
61
|
-
unit: "个",
|
|
62
|
-
icon: "store",
|
|
63
|
-
key: "warehouse",
|
|
64
|
-
count: 0
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
label: "应急物资",
|
|
68
|
-
unit: "件",
|
|
69
|
-
icon: "materials",
|
|
70
|
-
key: "goods",
|
|
71
|
-
count: 0
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
label: "避难场所",
|
|
75
|
-
unit: "处",
|
|
76
|
-
icon: "shelter",
|
|
77
|
-
key: "shelter",
|
|
78
|
-
count: 0
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
label: "保护对象",
|
|
82
|
-
unit: "人",
|
|
83
|
-
icon: "protected",
|
|
84
|
-
key: "protection",
|
|
85
|
-
count: 0
|
|
86
|
-
}
|
|
87
|
-
] }
|
|
88
|
-
},
|
|
89
17
|
setup(__props) {
|
|
90
|
-
const
|
|
91
|
-
|
|
18
|
+
const { isDark } = useThemeHook();
|
|
19
|
+
const data = ref([]);
|
|
20
|
+
const getImageUrl = (code) => {
|
|
21
|
+
return new URL(`./images/${isDark.value ? code : `${code}.light`}.png`, import.meta.url).href;
|
|
92
22
|
};
|
|
23
|
+
async function getData() {
|
|
24
|
+
try {
|
|
25
|
+
const res = await requestControl({
|
|
26
|
+
method: "get",
|
|
27
|
+
url: "/ipes-emergency-manager-server/api/v2/statistical/resource/overview"
|
|
28
|
+
});
|
|
29
|
+
console.log(res);
|
|
30
|
+
data.value = res.data;
|
|
31
|
+
} catch (error) {
|
|
32
|
+
console.log(error);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
onMounted(() => {
|
|
36
|
+
getData();
|
|
37
|
+
});
|
|
93
38
|
return (_ctx, _cache) => {
|
|
94
39
|
return openBlock(), createElementBlock("div", _hoisted_1, [
|
|
95
40
|
createElementVNode("div", _hoisted_2, [
|
|
96
|
-
(openBlock(true), createElementBlock(Fragment, null, renderList(
|
|
41
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(unref(data), (item) => {
|
|
97
42
|
return openBlock(), createElementBlock("div", {
|
|
98
|
-
key: item.
|
|
43
|
+
key: item.code,
|
|
99
44
|
class: "list flex flex-s"
|
|
100
45
|
}, [
|
|
101
46
|
createElementVNode("img", {
|
|
102
47
|
class: "avatar",
|
|
103
|
-
src: getImageUrl(item.
|
|
48
|
+
src: getImageUrl(item.code)
|
|
104
49
|
}, null, 8, _hoisted_3),
|
|
105
50
|
createElementVNode("div", _hoisted_4, [
|
|
106
|
-
createElementVNode("div", _hoisted_5, toDisplayString(item.
|
|
51
|
+
createElementVNode("div", _hoisted_5, toDisplayString(item.name), 1),
|
|
107
52
|
createElementVNode("div", _hoisted_6, [
|
|
108
|
-
createElementVNode("span", null, toDisplayString(item.
|
|
53
|
+
createElementVNode("span", null, toDisplayString(item.value), 1),
|
|
109
54
|
createElementVNode("span", null, toDisplayString(item.unit), 1)
|
|
110
55
|
])
|
|
111
56
|
])
|
|
@@ -8,18 +8,19 @@ import { useThemeHook } from '../../../utils.mjs';
|
|
|
8
8
|
import newNoDataSvg from './images/empty.png.mjs';
|
|
9
9
|
|
|
10
10
|
const _hoisted_1 = { class: "dv-ipes-emergency-watch" };
|
|
11
|
-
const _hoisted_2 = { class: "
|
|
12
|
-
const _hoisted_3 =
|
|
13
|
-
const _hoisted_4 =
|
|
14
|
-
const _hoisted_5 = { class: "
|
|
15
|
-
const _hoisted_6 = { class: "
|
|
16
|
-
const _hoisted_7 = { class: "
|
|
17
|
-
const _hoisted_8 = { class: "
|
|
18
|
-
const _hoisted_9 = { class: "
|
|
19
|
-
const _hoisted_10 =
|
|
20
|
-
const _hoisted_11 =
|
|
21
|
-
const _hoisted_12 = { class: "progress
|
|
22
|
-
const _hoisted_13 =
|
|
11
|
+
const _hoisted_2 = /* @__PURE__ */ createElementVNode("div", { class: "emergency-watch-title" }, " 今日值班 ", -1);
|
|
12
|
+
const _hoisted_3 = { class: "box" };
|
|
13
|
+
const _hoisted_4 = ["src"];
|
|
14
|
+
const _hoisted_5 = { class: "info" };
|
|
15
|
+
const _hoisted_6 = { class: "type" };
|
|
16
|
+
const _hoisted_7 = { class: "bottom" };
|
|
17
|
+
const _hoisted_8 = { class: "name" };
|
|
18
|
+
const _hoisted_9 = { class: "phone" };
|
|
19
|
+
const _hoisted_10 = { class: "done-header" };
|
|
20
|
+
const _hoisted_11 = /* @__PURE__ */ createElementVNode("span", null, "日志填写率", -1);
|
|
21
|
+
const _hoisted_12 = { class: "progress" };
|
|
22
|
+
const _hoisted_13 = { class: "progress-inner" };
|
|
23
|
+
const _hoisted_14 = /* @__PURE__ */ createElementVNode("div", { class: "progress-end" }, null, -1);
|
|
23
24
|
const __default__ = {
|
|
24
25
|
name: "DvIpesEmergencyWatch",
|
|
25
26
|
title: "应急值守"
|
|
@@ -60,6 +61,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
60
61
|
return (_ctx, _cache) => {
|
|
61
62
|
const _component_el_empty = ElEmpty;
|
|
62
63
|
return openBlock(), createElementBlock("div", _hoisted_1, [
|
|
64
|
+
_hoisted_2,
|
|
63
65
|
commitmentData.value.length > 0 ? (openBlock(), createBlock(unref(FpiElRolling), {
|
|
64
66
|
key: 0,
|
|
65
67
|
modelValue: isRolling.value,
|
|
@@ -75,15 +77,15 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
75
77
|
key: item.key,
|
|
76
78
|
class: normalizeClass(["security-box", item.key])
|
|
77
79
|
}, [
|
|
78
|
-
createElementVNode("div",
|
|
80
|
+
createElementVNode("div", _hoisted_3, [
|
|
79
81
|
createElementVNode("img", {
|
|
80
82
|
src: getImg(item.type, unref(isDark))
|
|
81
|
-
}, null, 8,
|
|
82
|
-
createElementVNode("div",
|
|
83
|
-
createElementVNode("div",
|
|
84
|
-
createElementVNode("div",
|
|
85
|
-
createElementVNode("span",
|
|
86
|
-
createElementVNode("span",
|
|
83
|
+
}, null, 8, _hoisted_4),
|
|
84
|
+
createElementVNode("div", _hoisted_5, [
|
|
85
|
+
createElementVNode("div", _hoisted_6, toDisplayString(item.type), 1),
|
|
86
|
+
createElementVNode("div", _hoisted_7, [
|
|
87
|
+
createElementVNode("span", _hoisted_8, toDisplayString(item.name), 1),
|
|
88
|
+
createElementVNode("span", _hoisted_9, toDisplayString(item.phone), 1)
|
|
87
89
|
])
|
|
88
90
|
])
|
|
89
91
|
])
|
|
@@ -103,12 +105,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
103
105
|
ref: componentBox,
|
|
104
106
|
class: "done"
|
|
105
107
|
}, [
|
|
106
|
-
createElementVNode("div",
|
|
107
|
-
|
|
108
|
+
createElementVNode("div", _hoisted_10, [
|
|
109
|
+
_hoisted_11,
|
|
108
110
|
createElementVNode("span", null, toDisplayString(`${doneRate.value}%`), 1)
|
|
109
111
|
]),
|
|
110
|
-
createElementVNode("div",
|
|
111
|
-
createElementVNode("div",
|
|
112
|
+
createElementVNode("div", _hoisted_12, [
|
|
113
|
+
createElementVNode("div", _hoisted_13, [
|
|
112
114
|
(openBlock(true), createElementBlock(Fragment, null, renderList(Math.round(doneRate.value * (copies.value / 100)), (item) => {
|
|
113
115
|
return openBlock(), createElementBlock("div", {
|
|
114
116
|
key: item,
|
|
@@ -117,7 +119,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
117
119
|
}, null, 4);
|
|
118
120
|
}), 128))
|
|
119
121
|
]),
|
|
120
|
-
|
|
122
|
+
_hoisted_14
|
|
121
123
|
])
|
|
122
124
|
], 512)
|
|
123
125
|
]);
|
|
@@ -56,8 +56,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
56
56
|
...__default__,
|
|
57
57
|
emits: ["clickCompany"],
|
|
58
58
|
setup(__props, { emit: $emit }) {
|
|
59
|
-
const isRolling = ref(false);
|
|
60
|
-
const actionType = ref("none");
|
|
61
59
|
const codeData = ref([
|
|
62
60
|
{ ruleColorName: "红码", inColor: "#F84439", num: 0, rate: "0" },
|
|
63
61
|
{ ruleColorName: "黄码", inColor: "#FDBD00", num: 0, rate: "0" },
|
|
@@ -85,8 +83,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
85
83
|
});
|
|
86
84
|
});
|
|
87
85
|
codeList.value = data?.companys || [];
|
|
88
|
-
isRolling.value = codeList.value.length > 3;
|
|
89
|
-
actionType.value = codeList.value.length > 3 ? "hover" : "none";
|
|
90
86
|
} catch (error) {
|
|
91
87
|
console.log(error);
|
|
92
88
|
}
|
|
@@ -131,9 +127,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
131
127
|
_hoisted_12,
|
|
132
128
|
codeList.value && codeList.value.length > 0 ? (openBlock(), createBlock(unref(FpiElRolling), {
|
|
133
129
|
key: 0,
|
|
134
|
-
modelValue: isRolling.value,
|
|
135
|
-
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRolling.value = $event),
|
|
136
|
-
action: actionType.value,
|
|
137
130
|
class: "dv-ipes-env-list-con",
|
|
138
131
|
direction: "y",
|
|
139
132
|
time: 100
|
|
@@ -145,7 +138,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
145
138
|
class: "dv-ipes-flex-bw-c dv-ipes-body-item"
|
|
146
139
|
}, [
|
|
147
140
|
createElementVNode("div", _hoisted_13, [
|
|
148
|
-
createElementVNode("
|
|
141
|
+
createElementVNode("span", {
|
|
149
142
|
href: "javascript:void(0);",
|
|
150
143
|
title: item.companyName,
|
|
151
144
|
onClick: ($event) => onClickCompany(item)
|
|
@@ -156,7 +149,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
156
149
|
}), 128))
|
|
157
150
|
]),
|
|
158
151
|
_: 1
|
|
159
|
-
}
|
|
152
|
+
})) : (openBlock(), createElementBlock("div", _hoisted_16, " 暂无数据 "))
|
|
160
153
|
])
|
|
161
154
|
]);
|
|
162
155
|
};
|
|
@@ -2,18 +2,18 @@ import { defineComponent, ref, onMounted, openBlock, createElementBlock, createE
|
|
|
2
2
|
import requestControl from '../../service/request.mjs';
|
|
3
3
|
|
|
4
4
|
const _hoisted_1 = { class: "dv-ipes-parking-spot" };
|
|
5
|
-
const _hoisted_2 = { class: "left-box" };
|
|
5
|
+
const _hoisted_2 = { class: "left-spot-box" };
|
|
6
6
|
const _hoisted_3 = { class: "left-wrap" };
|
|
7
7
|
const _hoisted_4 = /* @__PURE__ */ createElementVNode("div", { class: "name" }, " 重载车位剩余 ", -1);
|
|
8
8
|
const _hoisted_5 = { class: "value" };
|
|
9
|
-
const _hoisted_6 = { class: "center-box" };
|
|
9
|
+
const _hoisted_6 = { class: "center-spot-box" };
|
|
10
10
|
const _hoisted_7 = { class: "top" };
|
|
11
11
|
const _hoisted_8 = /* @__PURE__ */ createElementVNode("div", { class: "name" }, " 泊位数 ", -1);
|
|
12
12
|
const _hoisted_9 = { class: "value" };
|
|
13
13
|
const _hoisted_10 = { class: "bottom" };
|
|
14
14
|
const _hoisted_11 = { class: "value" };
|
|
15
15
|
const _hoisted_12 = /* @__PURE__ */ createElementVNode("div", { class: "name" }, " 使用率 ", -1);
|
|
16
|
-
const _hoisted_13 = { class: "right-box" };
|
|
16
|
+
const _hoisted_13 = { class: "right-spot-box" };
|
|
17
17
|
const _hoisted_14 = { class: "right-wrap" };
|
|
18
18
|
const _hoisted_15 = /* @__PURE__ */ createElementVNode("div", { class: "name" }, " 空载车位剩余 ", -1);
|
|
19
19
|
const _hoisted_16 = { class: "value" };
|
|
@@ -9,7 +9,7 @@ const _hoisted_2 = { class: "base-info" };
|
|
|
9
9
|
const _hoisted_3 = { class: "flex flex-c flex-between" };
|
|
10
10
|
const _hoisted_4 = { class: "left flex" };
|
|
11
11
|
const _hoisted_5 = ["src"];
|
|
12
|
-
const _hoisted_6 = { class: "left-box" };
|
|
12
|
+
const _hoisted_6 = { class: "left-responsibilities-box" };
|
|
13
13
|
const _hoisted_7 = /* @__PURE__ */ createElementVNode("div", { class: "title" }, " 今日新增履职 ", -1);
|
|
14
14
|
const _hoisted_8 = { class: "num" };
|
|
15
15
|
const _hoisted_9 = { class: "count mgr6" };
|
|
@@ -19,7 +19,7 @@ const _hoisted_12 = /* @__PURE__ */ createElementVNode("div", {
|
|
|
19
19
|
id: "majorPieChart",
|
|
20
20
|
class: "pie"
|
|
21
21
|
}, null, -1);
|
|
22
|
-
const _hoisted_13 = { class: "right-box" };
|
|
22
|
+
const _hoisted_13 = { class: "right-responsibilities-box" };
|
|
23
23
|
const _hoisted_14 = /* @__PURE__ */ createElementVNode("div", { class: "title" }, " 年度履职率 ", -1);
|
|
24
24
|
const _hoisted_15 = { class: "num" };
|
|
25
25
|
const _hoisted_16 = { class: "count rate mgr6" };
|
|
@@ -2,12 +2,12 @@ import { defineComponent, ref, onMounted, openBlock, createElementBlock, createE
|
|
|
2
2
|
import requestControl from '../../service/request.mjs';
|
|
3
3
|
|
|
4
4
|
const _hoisted_1 = { class: "dv-ipes-vocs-control" };
|
|
5
|
-
const _hoisted_2 = { class: "
|
|
5
|
+
const _hoisted_2 = { class: "real-box" };
|
|
6
6
|
const _hoisted_3 = /* @__PURE__ */ createElementVNode("div", { class: "name" }, " 实时TVOC浓度 ", -1);
|
|
7
7
|
const _hoisted_4 = { class: "left-wrap" };
|
|
8
8
|
const _hoisted_5 = { class: "value" };
|
|
9
9
|
const _hoisted_6 = { class: "unit" };
|
|
10
|
-
const _hoisted_7 = { class: "
|
|
10
|
+
const _hoisted_7 = { class: "main-box" };
|
|
11
11
|
const _hoisted_8 = /* @__PURE__ */ createElementVNode("div", { class: "name" }, " 主要污染物 ", -1);
|
|
12
12
|
const _hoisted_9 = { class: "value" };
|
|
13
13
|
const __default__ = {
|