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