From bb1c37828a61bbc68d15efae3bddd8769ec70cfc Mon Sep 17 00:00:00 2001 From: hzz Date: Sun, 8 Oct 2023 17:03:50 +0800 Subject: [PATCH 1/8] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=8D=B1=E5=BA=9F?= =?UTF-8?q?=E5=93=81=E7=AE=B1top=20Card.vue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Hazardous/components/Card.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/Hazardous/components/Card.vue b/src/views/Hazardous/components/Card.vue index 9b168d3..2f67cce 100644 --- a/src/views/Hazardous/components/Card.vue +++ b/src/views/Hazardous/components/Card.vue @@ -17,10 +17,10 @@
-
+
From 96b753fdb8cced7bf2adb88bb35fd216fe29312b Mon Sep 17 00:00:00 2001 From: hzz Date: Mon, 9 Oct 2023 17:02:58 +0800 Subject: [PATCH 2/8] =?UTF-8?q?=E5=8D=B1=E5=BA=9F=E5=93=81=E7=AE=B1?= =?UTF-8?q?=E5=A4=A7=E5=B1=8F=E6=A0=87=E9=A2=98=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E4=B8=BA=20=E5=8D=B1=E9=99=A9=E5=93=81=E6=9F=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/headerBox/header2.vue | 2 ++ src/views/Hazardous/index.vue | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/headerBox/header2.vue b/src/components/headerBox/header2.vue index 1dde50f..1b08c10 100644 --- a/src/components/headerBox/header2.vue +++ b/src/components/headerBox/header2.vue @@ -160,6 +160,8 @@ let props = defineProps<{ typeFun: any[]; alarmType: any[]; }>(); + +window.document.title = props.title; const typeObj = reactive({ comback: false, AbnormalData: false, diff --git a/src/views/Hazardous/index.vue b/src/views/Hazardous/index.vue index 364b479..2fe2877 100644 --- a/src/views/Hazardous/index.vue +++ b/src/views/Hazardous/index.vue @@ -2,7 +2,7 @@
-
From de41af961346592ce292429ba508dd03ed126931 Mon Sep 17 00:00:00 2001 From: hzz Date: Wed, 11 Oct 2023 17:04:38 +0800 Subject: [PATCH 3/8] =?UTF-8?q?=E6=9C=BA=E6=A2=B0=E5=88=86=E5=8E=82?= =?UTF-8?q?=E8=AE=BE=E5=A4=87=E5=B1=8F=20=E4=BF=9D=E5=85=BB=E6=8F=90?= =?UTF-8?q?=E9=86=92=E6=98=BE=E7=A4=BA=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Mechanics/components/devStatusTip.vue | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/src/views/Mechanics/components/devStatusTip.vue b/src/views/Mechanics/components/devStatusTip.vue index a137a3b..5ec6411 100644 --- a/src/views/Mechanics/components/devStatusTip.vue +++ b/src/views/Mechanics/components/devStatusTip.vue @@ -29,7 +29,7 @@ -

{{ label.name }} :{{ res.name }}

+

{{ label.name }}:{{ res.name }}

{{ label.date }}:{{ res.date }}   {{ label.duration }}:{{ res.duration }} @@ -49,7 +49,7 @@ -

{{ label.name }} :{{ res.name }}

+

{{ label.name }}:{{ res.name }}

{{ label.date }}:{{ res.date }}   {{ label.duration }}:{{ res.duration }} @@ -148,7 +148,7 @@ const onSlideChange = (e) => { }; .col-flex { display: flex; - justify-content: center; + justify-content: space-around; align-items: center; } @@ -158,5 +158,18 @@ swiper-container { height: 100%; display: inline-block !important; } + +.item-name { + display: flex; + flex-direction: row; + align-items: center; +} +.item-name-key { + width: 92px; +} +.item-name-value { + flex: 1; + text-align: left; +} \ No newline at end of file From eb0b7aa27e2b82e5640536dbe25444074e7c6da4 Mon Sep 17 00:00:00 2001 From: hzz Date: Thu, 12 Oct 2023 17:01:52 +0800 Subject: [PATCH 4/8] update --- src/components/headerBox/header2.vue | 2 +- src/router/index.ts | 8 +- src/store/moduleSocketMechanics.ts | 3 + .../CrownBlock/stuffCrownBlock/index.vue | 123 ++++++++++++++++++ src/views/PaintShopView/View1/top.vue | 2 +- .../generalEnvironmentMechanical/index.vue | 7 +- .../realtimeSecurity/content/content.vue | 2 +- 7 files changed, 140 insertions(+), 7 deletions(-) create mode 100644 src/views/CrownBlock/stuffCrownBlock/index.vue diff --git a/src/components/headerBox/header2.vue b/src/components/headerBox/header2.vue index 1b08c10..9dd6831 100644 --- a/src/components/headerBox/header2.vue +++ b/src/components/headerBox/header2.vue @@ -543,7 +543,7 @@ h1 { } .time { position: absolute; - width: 20rem; + width: 350px; height: 2rem; bottom: 30%; left: 4.2rem; diff --git a/src/router/index.ts b/src/router/index.ts index c76d233..f6d6ebf 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -281,8 +281,7 @@ const routes: Array = [ name: "MicroExhibitionChild", component: () => import("../views/MicroExhibition/child/index.vue"), }, - ] - + ] }, { @@ -295,6 +294,11 @@ const routes: Array = [ name: "Hazardous", component: () => import("../views/Hazardous/index.vue"), }, + { + path: "/stuffCrownBlock", + name: "stuffCrownBlock", + component: () => import("../views/CrownBlock/stuffCrownBlock/index.vue"), + }, diff --git a/src/store/moduleSocketMechanics.ts b/src/store/moduleSocketMechanics.ts index bcb2b07..c1297f3 100644 --- a/src/store/moduleSocketMechanics.ts +++ b/src/store/moduleSocketMechanics.ts @@ -72,6 +72,9 @@ export const useSocketStore = defineStore(Names.socketMechanics, { "pm10": "7" } ], + pmcq: [ + {} + ], newVerticalNum: [ { "type": "TVOC", diff --git a/src/views/CrownBlock/stuffCrownBlock/index.vue b/src/views/CrownBlock/stuffCrownBlock/index.vue new file mode 100644 index 0000000..f8df6f3 --- /dev/null +++ b/src/views/CrownBlock/stuffCrownBlock/index.vue @@ -0,0 +1,123 @@ + + + + + diff --git a/src/views/PaintShopView/View1/top.vue b/src/views/PaintShopView/View1/top.vue index 9d06f5b..453a23a 100644 --- a/src/views/PaintShopView/View1/top.vue +++ b/src/views/PaintShopView/View1/top.vue @@ -12,7 +12,7 @@

- + diff --git a/src/views/generalEnvironmentMechanical/index.vue b/src/views/generalEnvironmentMechanical/index.vue index 169c476..3fffbb7 100644 --- a/src/views/generalEnvironmentMechanical/index.vue +++ b/src/views/generalEnvironmentMechanical/index.vue @@ -13,6 +13,9 @@
+
@@ -224,8 +227,8 @@ watch(() => store.humiture, (newVal, oldVal) => { let pmindex = ref(0); async function getPmData() { - let resulttwo: any = await getPmtwoData({ deptIds: '6,7,9,10,11' }) - let resultten: any = await getPmtenData({ deptIds: '6,7,9,10,11' }) + let resulttwo: any = await getPmtwoData({ deptIds: '6,7,9,10,11,23' }) + let resultten: any = await getPmtenData({ deptIds: '6,7,9,10,11,23' }) let data = {} if (resulttwo) { resulttwo.data.forEach(ele => { diff --git a/src/views/realtimeSecurity/content/content.vue b/src/views/realtimeSecurity/content/content.vue index 4d8fba8..531740a 100644 --- a/src/views/realtimeSecurity/content/content.vue +++ b/src/views/realtimeSecurity/content/content.vue @@ -3,7 +3,7 @@ -
+
From 03c9b9849740897c9e3a7d90f4b82735cacbcd72 Mon Sep 17 00:00:00 2001 From: hzz Date: Fri, 13 Oct 2023 16:46:22 +0800 Subject: [PATCH 5/8] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=9C=8D=E8=A3=85?= =?UTF-8?q?=E5=AD=A6=E9=99=A2=E4=B8=93=E5=B1=9E=E5=A4=A7=E5=B1=8F=EF=BC=8C?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=9C=BA=E6=A2=B0=E5=88=86=E5=8E=82=E8=BD=A6?= =?UTF-8?q?=E9=97=B4=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.ts | 16 + src/views/Hazardous/index.vue | 2 +- src/views/PaintShopView/View1/bottom.vue | 4 +- src/views/PaintShopView/View1/top.vue | 4 +- src/views/PaintShopView/finishView/bottom.vue | 4 +- .../PaintShopView/machiningView/bottom.vue | 4 +- src/views/PaintShopView/stuffView/bottom.vue | 4 +- src/views/PaintShopView/weldView/bottom.vue | 4 +- src/views/SewingBift/component/swiper.vue | 185 +++++ src/views/SewingBift/content/bottom.vue | 486 ++++++++++++++ src/views/SewingBift/content/top.vue | 204 ++++++ src/views/SewingBift/index.vue | 259 +++++++ src/views/SewingBift/status/js/result.js | 635 ++++++++++++++++++ src/views/index.vue | 7 + 14 files changed, 1805 insertions(+), 13 deletions(-) create mode 100644 src/views/SewingBift/component/swiper.vue create mode 100644 src/views/SewingBift/content/bottom.vue create mode 100644 src/views/SewingBift/content/top.vue create mode 100644 src/views/SewingBift/index.vue create mode 100644 src/views/SewingBift/status/js/result.js diff --git a/src/router/index.ts b/src/router/index.ts index f6d6ebf..40a2007 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -299,6 +299,11 @@ const routes: Array = [ name: "stuffCrownBlock", component: () => import("../views/CrownBlock/stuffCrownBlock/index.vue"), }, + { + path: "/SewingBift", + name: "SewingBift", + component: () => import("../views/SewingBift/index.vue"), + }, @@ -366,4 +371,15 @@ const router = createRouter({ routes, }); +// router.beforeEach(async (to: any, from, next) => { + +// // 返回 false 以取消导航 +// if (to.path !== "/SewingBift") { + +// return false; +// } else { +// next(); +// } + +// }) export default router; diff --git a/src/views/Hazardous/index.vue b/src/views/Hazardous/index.vue index 2fe2877..a18e684 100644 --- a/src/views/Hazardous/index.vue +++ b/src/views/Hazardous/index.vue @@ -94,7 +94,7 @@ const config = reactive({ type: 1, classArr: [], value: 0, - limit: 80, + limit: 120, unit: '%RH' }, wendu: { diff --git a/src/views/PaintShopView/View1/bottom.vue b/src/views/PaintShopView/View1/bottom.vue index 0c43297..51c0985 100644 --- a/src/views/PaintShopView/View1/bottom.vue +++ b/src/views/PaintShopView/View1/bottom.vue @@ -208,7 +208,7 @@ function setcontentData(val) { color: function (params) { // 通过返回值的下标一一对应将颜色赋给柱子上,return出去什么颜色就是什么颜色,这里可以写判断 // console.log(params) - let color = ['#1089e7', '#f57474', '#56d0e3', '#f8b448', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc'] + let color = ['#1089e7', '#f57474', '#56d0e3', '#f8b448', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc','#4992FF','#7CFFB2','#FDDD60'] // return colors[params.dataIndex]; return color[params.dataIndex]; } @@ -252,7 +252,7 @@ function setcontentData(val) { color: function (params) { // 通过返回值的下标一一对应将颜色赋给柱子上,return出去什么颜色就是什么颜色,这里可以写判断 // console.log(params) - let color = ['#1089e7', '#f57474', '#56d0e3', '#f8b448', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc'] + let color = ['#1089e7', '#f57474', '#56d0e3', '#f8b448', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc','#4992FF','#7CFFB2','#FDDD60'] // return colors[params.dataIndex]; return color[params.dataIndex]; } diff --git a/src/views/PaintShopView/View1/top.vue b/src/views/PaintShopView/View1/top.vue index 453a23a..9e44e29 100644 --- a/src/views/PaintShopView/View1/top.vue +++ b/src/views/PaintShopView/View1/top.vue @@ -84,7 +84,7 @@ function reset(val: any) { const powerBox = (width: any, height: any) => { let a = calcWH(height, width, 1, 24, 0); //修改高度 - verticalNum3.value.setchartWH(a.oWidth * 3.42 - 20, a.oHeight - 20) + // verticalNum3.value.setchartWH(a.oWidth * 3.42 - 20, a.oHeight - 20) verticalNum4.value.setchartWH(a.oWidth * 3.42 - 20, a.oHeight - 20) verticalNum5.value.setchartWH(a.oWidth * 3.42 - 20, a.oHeight - 20) verticalNum6.value.setchartWH(a.oWidth * 3.42 - 20, a.oHeight - 20) @@ -267,7 +267,7 @@ function setcontentData(val) { let noise = val.noise.map((item) => { return { name: item.name, val: item.data,status:item.status }; }); - verticalNum3.value.setData(val.FIRE, 'icon-weibiaoti1', 0, "") + // verticalNum3.value.setData(val.FIRE, 'icon-weibiaoti1', 0, "") verticalNum4.value.setData(noise, 'icon-shengyin', 85, "dB") verticalNum5.value.setData(Smoke, 'icon-yanwubaojingqi', 100, "PPM") verticalNum6.value.setData(CH2O, 'icon-app_icons--', 0.08, "mg/m3") diff --git a/src/views/PaintShopView/finishView/bottom.vue b/src/views/PaintShopView/finishView/bottom.vue index a297d6f..2243bc6 100644 --- a/src/views/PaintShopView/finishView/bottom.vue +++ b/src/views/PaintShopView/finishView/bottom.vue @@ -206,7 +206,7 @@ function setcontentData(val) { color: function (params) { // 通过返回值的下标一一对应将颜色赋给柱子上,return出去什么颜色就是什么颜色,这里可以写判断 // console.log(params) - let color = ['#1089e7', '#f57474', '#56d0e3', '#f8b448', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc'] + let color = ['#1089e7', '#f57474', '#56d0e3', '#f8b448', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc','#4992FF','#7CFFB2','#FDDD60'] // return colors[params.dataIndex]; return color[params.dataIndex]; } @@ -249,7 +249,7 @@ function setcontentData(val) { color: function (params) { // 通过返回值的下标一一对应将颜色赋给柱子上,return出去什么颜色就是什么颜色,这里可以写判断 // console.log(params) - let color = ['#1089e7', '#f57474', '#56d0e3', '#f8b448', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc'] + let color = ['#1089e7', '#f57474', '#56d0e3', '#f8b448', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc','#4992FF','#7CFFB2','#FDDD60'] // return colors[params.dataIndex]; return color[params.dataIndex]; } diff --git a/src/views/PaintShopView/machiningView/bottom.vue b/src/views/PaintShopView/machiningView/bottom.vue index 5a79152..23c4115 100644 --- a/src/views/PaintShopView/machiningView/bottom.vue +++ b/src/views/PaintShopView/machiningView/bottom.vue @@ -207,7 +207,7 @@ function setcontentData(val) { color: function (params) { // 通过返回值的下标一一对应将颜色赋给柱子上,return出去什么颜色就是什么颜色,这里可以写判断 // console.log(params) - let color = ['#1089e7', '#f57474', '#56d0e3', '#f8b448', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc'] + let color = ['#1089e7', '#f57474', '#56d0e3', '#f8b448', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc','#4992FF','#7CFFB2','#FDDD60'] // return colors[params.dataIndex]; return color[params.dataIndex]; } @@ -250,7 +250,7 @@ function setcontentData(val) { color: function (params) { // 通过返回值的下标一一对应将颜色赋给柱子上,return出去什么颜色就是什么颜色,这里可以写判断 // console.log(params) - let color = ['#1089e7', '#f57474', '#56d0e3', '#f8b448', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc'] + let color = ['#1089e7', '#f57474', '#56d0e3', '#f8b448', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc','#4992FF','#7CFFB2','#FDDD60'] // return colors[params.dataIndex]; return color[params.dataIndex]; } diff --git a/src/views/PaintShopView/stuffView/bottom.vue b/src/views/PaintShopView/stuffView/bottom.vue index 3f68cec..7db814b 100644 --- a/src/views/PaintShopView/stuffView/bottom.vue +++ b/src/views/PaintShopView/stuffView/bottom.vue @@ -207,7 +207,7 @@ function setcontentData(val) { color: function (params) { // 通过返回值的下标一一对应将颜色赋给柱子上,return出去什么颜色就是什么颜色,这里可以写判断 // console.log(params) - let color = ['#1089e7', '#f57474', '#56d0e3', '#f8b448', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc'] + let color = ['#1089e7', '#f57474', '#56d0e3', '#f8b448', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc','#4992FF','#7CFFB2','#FDDD60'] // return colors[params.dataIndex]; return color[params.dataIndex]; } @@ -251,7 +251,7 @@ function setcontentData(val) { color: function (params) { // 通过返回值的下标一一对应将颜色赋给柱子上,return出去什么颜色就是什么颜色,这里可以写判断 // console.log(params) - let color = ['#1089e7', '#f57474', '#56d0e3', '#f8b448', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc'] + let color = ['#1089e7', '#f57474', '#56d0e3', '#f8b448', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc','#4992FF','#7CFFB2','#FDDD60'] // return colors[params.dataIndex]; return color[params.dataIndex]; } diff --git a/src/views/PaintShopView/weldView/bottom.vue b/src/views/PaintShopView/weldView/bottom.vue index 231ba37..33c34b8 100644 --- a/src/views/PaintShopView/weldView/bottom.vue +++ b/src/views/PaintShopView/weldView/bottom.vue @@ -207,7 +207,7 @@ function setcontentData(val) { color: function (params) { // 通过返回值的下标一一对应将颜色赋给柱子上,return出去什么颜色就是什么颜色,这里可以写判断 // console.log(params) - let color = ['#1089e7', '#f57474', '#56d0e3', '#f8b448', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc'] + let color = ['#1089e7', '#f57474', '#56d0e3', '#f8b448', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc','#4992FF','#7CFFB2','#FDDD60'] // return colors[params.dataIndex]; return color[params.dataIndex]; } @@ -251,7 +251,7 @@ function setcontentData(val) { color: function (params) { // 通过返回值的下标一一对应将颜色赋给柱子上,return出去什么颜色就是什么颜色,这里可以写判断 // console.log(params) - let color = ['#1089e7', '#f57474', '#56d0e3', '#f8b448', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc'] + let color = ['#1089e7', '#f57474', '#56d0e3', '#f8b448', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc','#4992FF','#7CFFB2','#FDDD60'] // return colors[params.dataIndex]; return color[params.dataIndex]; } diff --git a/src/views/SewingBift/component/swiper.vue b/src/views/SewingBift/component/swiper.vue new file mode 100644 index 0000000..676d0c8 --- /dev/null +++ b/src/views/SewingBift/component/swiper.vue @@ -0,0 +1,185 @@ + + + + + + + diff --git a/src/views/SewingBift/content/bottom.vue b/src/views/SewingBift/content/bottom.vue new file mode 100644 index 0000000..f457736 --- /dev/null +++ b/src/views/SewingBift/content/bottom.vue @@ -0,0 +1,486 @@ + + + + + + diff --git a/src/views/SewingBift/content/top.vue b/src/views/SewingBift/content/top.vue new file mode 100644 index 0000000..7d8a63b --- /dev/null +++ b/src/views/SewingBift/content/top.vue @@ -0,0 +1,204 @@ + + + + + + diff --git a/src/views/SewingBift/index.vue b/src/views/SewingBift/index.vue new file mode 100644 index 0000000..fae20a8 --- /dev/null +++ b/src/views/SewingBift/index.vue @@ -0,0 +1,259 @@ + + + + + + + + diff --git a/src/views/SewingBift/status/js/result.js b/src/views/SewingBift/status/js/result.js new file mode 100644 index 0000000..a929e01 --- /dev/null +++ b/src/views/SewingBift/status/js/result.js @@ -0,0 +1,635 @@ +/** + * 1 + */ +export const getStatusCountsOfMiniatureFactoryData = { + "code": 200, + "msg": null, + "data": [ + { + "deptId": "12f5d2a0-1593-11ee-b4df-a9653aef169c", + "name": "false", + "counts": 0, + "gatewayStatus": "true" + }, + { + "deptId": "12f5d2a0-1593-11ee-b4df-a9653aef169c", + "name": "true", + "counts": 10, + "gatewayStatus": "true" + } + ] +} + +/** + * 设备信息 + */ +export const getInfoOfMiniatureFactoryData = { + "code": 200, + "msg": null, + "data": [ + { + "id": "0ccacd50-1592-11ee-b4df-a9653aef169c", + "label": null, + "name": "高速平台式双针双重环缝缝纫机", + "belongTo": null, + "deviceStatus": "true", + "deliveryDate": null, + "progress": null, + "runTime": 2661.53, + "image": "g.png", + "speed": 0, + "pins": 39499, + "model": null, + "type": null, + "typeName": null, + "prtDeliveryDate": null, + "realityTime": null, + "status": null, + "inspector": null, + "assemblyGroup": null, + "electricGroup": null + }, + { + "id": "26ce8020-1592-11ee-b4df-a9653aef169c", + "label": null, + "name": "半干机头双针平缝机", + "belongTo": null, + "deviceStatus": "true", + "deliveryDate": null, + "progress": null, + "runTime": 133.43, + "image": "b.png", + "speed": 0, + "pins": 0, + "model": null, + "type": null, + "typeName": null, + "prtDeliveryDate": null, + "realityTime": null, + "status": null, + "inspector": null, + "assemblyGroup": null, + "electricGroup": null + }, + { + "id": "2fb7b080-1592-11ee-b4df-a9653aef169c", + "label": null, + "name": "半干式高速包缝机", + "belongTo": null, + "deviceStatus": "true", + "deliveryDate": null, + "progress": null, + "runTime": 7350.0, + "image": "c.png", + "speed": 0, + "pins": 379066, + "model": null, + "type": null, + "typeName": null, + "prtDeliveryDate": null, + "realityTime": null, + "status": null, + "inspector": null, + "assemblyGroup": null, + "electricGroup": null + }, + { + "id": "3b49e0d0-1592-11ee-b4df-a9653aef169c", + "label": null, + "name": "电脑数控花样珠边机", + "belongTo": null, + "deviceStatus": "true", + "deliveryDate": null, + "progress": null, + "runTime": 899.66, + "image": "e.png", + "speed": 0, + "pins": 0, + "model": null, + "type": null, + "typeName": null, + "prtDeliveryDate": null, + "realityTime": null, + "status": null, + "inspector": null, + "assemblyGroup": null, + "electricGroup": null + }, + { + "id": "620e31d0-1592-11ee-b4df-a9653aef169c", + "label": null, + "name": "小方头式偏平缝绷缝机", + "belongTo": null, + "deviceStatus": "true", + "deliveryDate": null, + "progress": null, + "runTime": 8160.2, + "image": "i.png", + "speed": 0, + "pins": 410440, + "model": null, + "type": null, + "typeName": null, + "prtDeliveryDate": null, + "realityTime": null, + "status": null, + "inspector": null, + "assemblyGroup": null, + "electricGroup": null + }, + { + "id": "6f495730-1592-11ee-b4df-a9653aef169c", + "label": null, + "name": "人字缝缝纫机", + "belongTo": null, + "deviceStatus": "true", + "deliveryDate": null, + "progress": null, + "runTime": 805.54, + "image": "h.png", + "speed": 0, + "pins": 0, + "model": null, + "type": null, + "typeName": null, + "prtDeliveryDate": null, + "realityTime": null, + "status": null, + "inspector": null, + "assemblyGroup": null, + "electricGroup": null + }, + { + "id": "7ca216b0-1592-11ee-b4df-a9653aef169c", + "label": null, + "name": "暗缝机", + "belongTo": null, + "deviceStatus": "true", + "deliveryDate": null, + "progress": null, + "runTime": 1089.38, + "image": "a.png", + "speed": 0, + "pins": 30037, + "model": null, + "type": null, + "typeName": null, + "prtDeliveryDate": null, + "realityTime": null, + "status": null, + "inspector": null, + "assemblyGroup": null, + "electricGroup": null + }, + { + "id": "93fc0640-1592-11ee-b4df-a9653aef169c", + "label": null, + "name": "单针平缝缝纫机1", + "belongTo": null, + "deviceStatus": "true", + "deliveryDate": null, + "progress": null, + "runTime": 2203.81, + "image": "d.png", + "speed": 0, + "pins": 44497, + "model": null, + "type": null, + "typeName": null, + "prtDeliveryDate": null, + "realityTime": null, + "status": null, + "inspector": null, + "assemblyGroup": null, + "electricGroup": null + }, + { + "id": "9b11f2b0-1591-11ee-b4df-a9653aef169c", + "label": null, + "name": "单针平缝缝纫机2", + "belongTo": null, + "deviceStatus": "true", + "deliveryDate": null, + "progress": null, + "runTime": 3089.73, + "image": "d.png", + "speed": 0, + "pins": 122849, + "model": null, + "type": null, + "typeName": null, + "prtDeliveryDate": null, + "realityTime": null, + "status": null, + "inspector": null, + "assemblyGroup": null, + "electricGroup": null + }, + { + "id": "b2a9e030-1592-11ee-b4df-a9653aef169c", + "label": null, + "name": "高速电子锁眼机", + "belongTo": null, + "deviceStatus": "true", + "deliveryDate": null, + "progress": null, + "runTime": 1574.59, + "image": "f.png", + "speed": 0, + "pins": 11128, + "model": null, + "type": null, + "typeName": null, + "prtDeliveryDate": null, + "realityTime": null, + "status": null, + "inspector": null, + "assemblyGroup": null, + "electricGroup": null + }, + ] +} + +/** + * 缝纫时间 + */ +export const getSewingTimeData = { + "code": 200, + "msg": null, + "data": [ + { + "deviceId": "620e31d0-1592-11ee-b4df-a9653aef169c", + "name": "小方头式偏平缝绷缝机", + "firstRunTime": "2023-08-11 09:42:39", + "lastStartTime": "2023-10-13 07:56:46", + "lastEndTime": "2023-10-13 13:15:46", + "usageDate": 52, + "runTime": 8160.2, + "workTime": 847.74, + "in2Count": 0, + "in2TodayCount": 0, + "in2ClearCount": 0, + "in3Count": 115, + "in3TodayCount": 113, + "in3ClearCount": 0, + "in4Count": 410440 + }, + { + "deviceId": "9b11f2b0-1591-11ee-b4df-a9653aef169c", + "name": "单针平缝缝纫机2", + "firstRunTime": "2023-07-21 17:51:45", + "lastStartTime": "2023-10-13 13:15:50", + "lastEndTime": "2023-10-13 13:15:50", + "usageDate": 59, + "runTime": 3089.73, + "workTime": 144.17, + "in2Count": 4863, + "in2TodayCount": 2147, + "in2ClearCount": 0, + "in3Count": 287, + "in3TodayCount": 369, + "in3ClearCount": 0, + "in4Count": 122849 + }, + { + "deviceId": "2fb7b080-1592-11ee-b4df-a9653aef169c", + "name": "半干式高速包缝机", + "firstRunTime": "2023-07-21 17:51:45", + "lastStartTime": "2023-10-10 07:59:25", + "lastEndTime": "2023-10-10 11:05:56", + "usageDate": 58, + "runTime": 3263.84, + "workTime": 173.91, + "in2Count": 24231, + "in2TodayCount": 7008, + "in2ClearCount": 9, + "in3Count": 2199, + "in3TodayCount": 1451, + "in3ClearCount": 5, + "in4Count": 105683 + }, + { + "deviceId": "2fb7b080-1592-11ee-b4df-a965fgsf169c", + "name": "高速平台式双针双重环缝缝纫机", + "firstRunTime": "2023-07-21 17:51:45", + "lastStartTime": "2023-10-10 07:59:25", + "lastEndTime": "2023-10-10 11:05:56", + "usageDate": 58, + "runTime": 3263.84, + "workTime": 245.32, + "in2Count": 24231, + "in2TodayCount": 7008, + "in2ClearCount": 9, + "in3Count": 2199, + "in3TodayCount": 1451, + "in3ClearCount": 5, + "in4Count": 105683 + }, + { + "deviceId": "2fb7b080-1592-11ee-b4df-a9699aef169c", + "name": "半干机头双针平缝机", + "firstRunTime": "2023-07-21 17:51:45", + "lastStartTime": "2023-10-10 07:59:25", + "lastEndTime": "2023-10-10 11:05:56", + "usageDate": 58, + "runTime": 3263.84, + "workTime": 195.32, + "in2Count": 24231, + "in2TodayCount": 7008, + "in2ClearCount": 9, + "in3Count": 2199, + "in3TodayCount": 1451, + "in3ClearCount": 5, + "in4Count": 105683 + }, + { + "deviceId": "2fb7b080-1592-11ee-b4df-a96480ef169c", + "name": "电脑数控花样珠边机", + "firstRunTime": "2023-07-21 17:51:45", + "lastStartTime": "2023-10-10 07:59:25", + "lastEndTime": "2023-10-10 11:05:56", + "usageDate": 58, + "runTime": 3263.84, + "workTime": 220.55, + "in2Count": 24231, + "in2TodayCount": 7008, + "in2ClearCount": 9, + "in3Count": 2199, + "in3TodayCount": 1451, + "in3ClearCount": 5, + "in4Count": 105683 + }, + { + "deviceId": "2fb7b080-1592-11ee-aa25-a9653aef169c", + "name": "高速电子锁眼机", + "firstRunTime": "2023-07-21 17:51:45", + "lastStartTime": "2023-10-10 07:59:25", + "lastEndTime": "2023-10-10 11:05:56", + "usageDate": 58, + "runTime": 3263.84, + "workTime": 279.84, + "in2Count": 24231, + "in2TodayCount": 7008, + "in2ClearCount": 9, + "in3Count": 2199, + "in3TodayCount": 1451, + "in3ClearCount": 5, + "in4Count": 105683 + }, + { + "deviceId": "2fb7b080-9854-11ee-b4df-a9653aef169c", + "name": "人字缝缝纫机", + "firstRunTime": "2023-07-21 17:51:45", + "lastStartTime": "2023-10-10 07:59:25", + "lastEndTime": "2023-10-10 11:05:56", + "usageDate": 58, + "runTime": 3263.84, + "workTime": 152.00, + "in2Count": 24231, + "in2TodayCount": 7008, + "in2ClearCount": 9, + "in3Count": 2199, + "in3TodayCount": 1451, + "in3ClearCount": 5, + "in4Count": 105683 + }, + { + "deviceId": "2fb7b080-1193-11ee-b4df-a9653aef169c", + "name": "暗缝机", + "firstRunTime": "2023-07-21 17:51:45", + "lastStartTime": "2023-10-10 07:59:25", + "lastEndTime": "2023-10-10 11:05:56", + "usageDate": 58, + "runTime": 3263.84, + "workTime": 425.98, + "in2Count": 24231, + "in2TodayCount": 7008, + "in2ClearCount": 9, + "in3Count": 2199, + "in3TodayCount": 1451, + "in3ClearCount": 5, + "in4Count": 105683 + } + ] +} +/** + * 压脚 + */ +export const getPresserFootHistogramData = { + "code": 200, + "msg": null, + "data": [ + { + "id": "2fb7b080-1592-11ee-b4df-a9653aef169c", + "name": "半干式高速包缝机", + "reality": 5283, + "average": 2671, + "ratio": 50 + }, + { + "id": "93fc0640-1592-11ee-b4df-a9653aef169c", + "name": "单针平缝缝纫机", + "reality": 14, + "average": 33, + "ratio": 235 + }, + { + "id": "9b11f2b0-1591-11ee-b4df-a9653aef169c", + "name": "单针平缝缝纫机2", + "reality": 2147, + "average": 82, + "ratio": 3 + }, + { + "id": "0ccacd50-1592-11ee-b4df-a9653aef169c", + "name": "高速平台式双针双重环缝缝纫机", + "reality": 116, + "average": 1, + "ratio": 0 + }, + { + "id": "26ce8020-1592-11ee-b4df-a9653aef169c", + "name": "半干机头双针平缝机", + "reality": 1283, + "average": 51, + "ratio": 3 + }, + { + "id": "3b49e0d0-1592-11ee-b4df-a9653aef169c", + "name": "电脑数控花样珠边机", + "reality": 974, + "average": 29, + "ratio": 2 + }, + { + "id": "b2a9e030-1592-11ee-b4df-a9653aef169c", + "name": "高速电子锁眼机", + "reality": 50, + "average": 1, + "ratio": 2 + }, + { + "id": "620e31d0-1592-11ee-b4df-a9653aef169c", + "name": "小方头式偏平缝绷缝机", + "reality": 7008, + "average": 417, + "ratio": 5 + }, + { + "id": "6f495730-1592-11ee-b4df-a9653aef169c", + "name": "人字缝缝纫机", + "reality": 111, + "average": 1, + "ratio": 0 + }, + { + "id": "7ca216b0-1592-11ee-b4df-a9653aef169c", + "name": "暗缝机", + "reality": 2103, + "average": 51, + "ratio": 3 + }, + ] +} + +/** + * 剪线 + */ +export const getCuttingLineHistogramData = { + "code": 200, + "msg": null, + "data": [ + { + "id": "620e31d0-1592-11ee-b4df-a9653aef169c", + "name": "小方头式偏平缝绷缝机", + "reality": 113, + "average": 2, + "ratio": 1 + }, + { + "id": "9b11f2b0-1591-11ee-b4df-a9653aef169c", + "name": "单针平缝缝纫机2", + "reality": 369, + "average": 4, + "ratio": 1 + }, + { + "id": "93fc0640-1592-11ee-b4df-a9653aef169c", + "name": "单针平缝缝纫机1", + "reality": 625, + "average": 25, + "ratio": 2 + }, + { + "id": "0ccacd50-1592-11ee-b4df-a9653aef169c", + "name": "高速平台式双针双重环缝缝纫机", + "reality": 445, + "average": 7, + "ratio": 1 + }, + { + "id": "2fb7b080-1592-11ee-b4df-a9653aef169c", + "name": "半干式高速包缝机", + "reality": 263, + "average": 3, + "ratio": 1 + },//----- + { + "id": "9b11f2b0-1591-11ee-b4df-a9653avf169c", + "name": "半干机头双针平缝机", + "reality": 369, + "average": 4, + "ratio": 1 + }, + { + "id": "93fc0640-1592-11ee-b4df-a9698lef169c", + "name": "电脑数控花样珠边机", + "reality": 541, + "average": 5, + "ratio": 2 + }, + { + "id": "0ccacd50-1592-11ee-b4df-a9653aef4561", + "name": "高速电子锁眼机", + "reality": 445, + "average": 7, + "ratio": 1 + }, + { + "id": "2fb7b080-1592-11ee-b4df-a965465769c", + "name": "人字缝缝纫机", + "reality": 263, + "average": 3, + "ratio": 1 + }, + { + "id": "2fb7qa80-1592-11ee-b4df-a965465769c", + "name": "暗缝机", + "reality": 263, + "average": 3, + "ratio": 1 + } + ] +} + + +/** + * 稼动率 + */ +export const getActivationData = { + "code": 200, + "msg": null, + "data": [ + { + "id": "2fb7b080-1592-11ee-b4df-a9653aef169c", + "name": "半干式高速包缝机", + "activation": 8 + }, + { + "id": "620e31d0-1592-11ee-b4df-a9653aef169c", + "name": "小方头式偏平缝绷缝机", + "activation": 10 + }, + { + "id": "7ca216b0-1592-11ee-b4df-a9653aef169c", + "name": "暗缝机", + "activation": 2 + }, + { + "id": "93fc0640-1592-11ee-b4df-a9653aef169c", + "name": "单针平缝缝纫机", + "activation": 5 + }, + { + "id": "9b11f2b0-1591-11ee-b4df-a9653aef169c", + "name": "单针平缝缝纫机2", + "activation": 4 + }, + { + "id": "0ccacd50-1592-11ee-b4df-a9653aef169c", + "name": "高速平台式双针双重环缝缝纫机", + "activation": 4 + }, + { + "id": "26ce8020-1592-11ee-b4df-a9653aef169c", + "name": "半干机头双针平缝机", + "activation": 3 + }, + { + "id": "3b49e0d0-1592-11ee-b4df-a9653aef169c", + "name": "电脑数控花样珠边机", + "activation": 5 + }, + { + "id": "b2a9e030-1592-11ee-b4df-a9653aef169c", + "name": "高速电子锁眼机", + "activation": 2 + }, + { + "id": "6f495730-1592-11ee-b4df-a9653aef169c", + "name": "人字缝缝纫机", + "activation": 1 + } + ] +} + diff --git a/src/views/index.vue b/src/views/index.vue index 0e7c75e..3bdb038 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -194,42 +194,49 @@ let routerList = [ }, { id: 31, + isLink: false, path: "/waterhousedata", title: '南门水房物联大屏', url: require("../assets/indexImg/waterhouse.png"), }, { id: 31, + isLink: false, path: "/MicrofactoryDevOnline", title: '微工厂缝纫设备看板', url: require("../assets/indexImg/MicrofactoryDevOnline.png"), }, { id: 32, + isLink: false, path: "/intelligentShelves", title: '智能货架物联管理系统', url: require("../assets/indexImg/intelligentShelves.png"), }, { id: 33, + isLink: false, path: "/MicEnvironment", title: '微工厂环境实时监测系统', url: require("../assets/indexImg/MicEnvironment.png"), }, { id: 33, + isLink: false, path: "/MicroExhibition", title: '设备大屏展示系统', url: require("../assets/indexImg/microExhibition.png"), }, { id: 33, + isLink: false, path: "/MicroExhibitionTable", title: '设备物联工况系统列表', url: require("../assets/indexImg/MicroExhibitionTable.png"), }, { id: 34, + isLink: false, path: "/Hazardous", title: '危废品箱物联检测系统', url: require("../assets/indexImg/Hazardous.png"), From f23064a91fd99cf4fc517f29106737aa7401aecc Mon Sep 17 00:00:00 2001 From: "123@123.com" <123456> Date: Tue, 17 Oct 2023 08:47:47 +0800 Subject: [PATCH 6/8] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=8F=AF=E7=87=83?= =?UTF-8?q?=E6=B0=94=E4=BD=93limit=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Hazardous/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Hazardous/index.vue b/src/views/Hazardous/index.vue index a18e684..f710483 100644 --- a/src/views/Hazardous/index.vue +++ b/src/views/Hazardous/index.vue @@ -148,7 +148,7 @@ const config = reactive({ type: 3, classArr: [], value: 0, - limit: 1, + limit: 5, unit: '' }, }) From 195c4b550988edc72a4142680b857fb841775bb0 Mon Sep 17 00:00:00 2001 From: "123@123.com" <123456> Date: Wed, 18 Oct 2023 13:22:48 +0800 Subject: [PATCH 7/8] =?UTF-8?q?=E6=9C=8D=E8=A3=85=E5=AD=A6=E9=99=A2?= =?UTF-8?q?=E5=A4=A7=E5=B1=8F=E6=95=B0=E6=8D=AE=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/SewingBift/content/top.vue | 2 +- src/views/SewingBift/status/js/result.js | 92 ++++++++++++------------ 2 files changed, 47 insertions(+), 47 deletions(-) diff --git a/src/views/SewingBift/content/top.vue b/src/views/SewingBift/content/top.vue index 7d8a63b..b85dffe 100644 --- a/src/views/SewingBift/content/top.vue +++ b/src/views/SewingBift/content/top.vue @@ -46,7 +46,7 @@ let tabledata = reactive({ evenRowBGC: "#100C2A", rowNum: 8, waitTime: 3000, - carousel: "page", + carousel: "single", hoverPause: true, align: [ "center", diff --git a/src/views/SewingBift/status/js/result.js b/src/views/SewingBift/status/js/result.js index a929e01..ec1f92a 100644 --- a/src/views/SewingBift/status/js/result.js +++ b/src/views/SewingBift/status/js/result.js @@ -424,70 +424,70 @@ export const getPresserFootHistogramData = { "name": "半干式高速包缝机", "reality": 5283, "average": 2671, - "ratio": 50 + "ratio": 198 }, { "id": "93fc0640-1592-11ee-b4df-a9653aef169c", "name": "单针平缝缝纫机", - "reality": 14, - "average": 33, - "ratio": 235 + "reality": 4414, + "average": 3233, + "ratio": 136 }, { "id": "9b11f2b0-1591-11ee-b4df-a9653aef169c", "name": "单针平缝缝纫机2", - "reality": 2147, - "average": 82, - "ratio": 3 + "reality": 3147, + "average": 2982, + "ratio": 105 }, { "id": "0ccacd50-1592-11ee-b4df-a9653aef169c", "name": "高速平台式双针双重环缝缝纫机", - "reality": 116, - "average": 1, - "ratio": 0 + "reality": 4126, + "average": 4223, + "ratio": 98 }, { "id": "26ce8020-1592-11ee-b4df-a9653aef169c", "name": "半干机头双针平缝机", "reality": 1283, - "average": 51, - "ratio": 3 + "average": 951, + "ratio": 134 }, { "id": "3b49e0d0-1592-11ee-b4df-a9653aef169c", "name": "电脑数控花样珠边机", - "reality": 974, - "average": 29, - "ratio": 2 + "reality": 4974, + "average": 3429, + "ratio": 145 }, { "id": "b2a9e030-1592-11ee-b4df-a9653aef169c", "name": "高速电子锁眼机", - "reality": 50, - "average": 1, - "ratio": 2 + "reality": 2140, + "average": 1145, + "ratio": 186 }, { "id": "620e31d0-1592-11ee-b4df-a9653aef169c", "name": "小方头式偏平缝绷缝机", - "reality": 7008, - "average": 417, - "ratio": 5 + "reality": 5008, + "average": 3417, + "ratio": 147 }, { "id": "6f495730-1592-11ee-b4df-a9653aef169c", "name": "人字缝缝纫机", - "reality": 111, - "average": 1, - "ratio": 0 + "reality": 3511, + "average": 2111, + "ratio": 166 }, { "id": "7ca216b0-1592-11ee-b4df-a9653aef169c", "name": "暗缝机", "reality": 2103, - "average": 51, - "ratio": 3 + "average": 1551, + "ratio": 136 }, ] } @@ -503,71 +503,71 @@ export const getCuttingLineHistogramData = { "id": "620e31d0-1592-11ee-b4df-a9653aef169c", "name": "小方头式偏平缝绷缝机", "reality": 113, - "average": 2, - "ratio": 1 + "average": 52, + "ratio": 217 }, { "id": "9b11f2b0-1591-11ee-b4df-a9653aef169c", "name": "单针平缝缝纫机2", "reality": 369, - "average": 4, - "ratio": 1 + "average": 114, + "ratio": 323 }, { "id": "93fc0640-1592-11ee-b4df-a9653aef169c", "name": "单针平缝缝纫机1", "reality": 625, - "average": 25, - "ratio": 2 + "average": 325, + "ratio": 192 }, { "id": "0ccacd50-1592-11ee-b4df-a9653aef169c", "name": "高速平台式双针双重环缝缝纫机", "reality": 445, - "average": 7, - "ratio": 1 + "average": 207, + "ratio": 215 }, { "id": "2fb7b080-1592-11ee-b4df-a9653aef169c", "name": "半干式高速包缝机", "reality": 263, - "average": 3, - "ratio": 1 + "average": 93, + "ratio": 283 },//----- { "id": "9b11f2b0-1591-11ee-b4df-a9653avf169c", "name": "半干机头双针平缝机", "reality": 369, - "average": 4, - "ratio": 1 + "average": 104, + "ratio": 355 }, { "id": "93fc0640-1592-11ee-b4df-a9698lef169c", "name": "电脑数控花样珠边机", "reality": 541, - "average": 5, - "ratio": 2 + "average": 205, + "ratio": 264 }, { "id": "0ccacd50-1592-11ee-b4df-a9653aef4561", "name": "高速电子锁眼机", "reality": 445, - "average": 7, - "ratio": 1 + "average": 237, + "ratio": 188 }, { "id": "2fb7b080-1592-11ee-b4df-a965465769c", "name": "人字缝缝纫机", "reality": 263, - "average": 3, - "ratio": 1 + "average": 153, + "ratio": 172 }, { "id": "2fb7qa80-1592-11ee-b4df-a965465769c", "name": "暗缝机", "reality": 263, - "average": 3, - "ratio": 1 + "average": 123, + "ratio": 214 } ] } From 6c008c7224d3b3d6962f821b18e3706f7a5f7c0b Mon Sep 17 00:00:00 2001 From: hzz Date: Thu, 9 Nov 2023 10:46:47 +0800 Subject: [PATCH 8/8] update --- src/locales/lang/en.ts | 3 ++- src/locales/lang/zh.ts | 1 + src/views/Hazardous/index.vue | 4 ++++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/locales/lang/en.ts b/src/locales/lang/en.ts index e19e8f2..ad15579 100644 --- a/src/locales/lang/en.ts +++ b/src/locales/lang/en.ts @@ -294,7 +294,8 @@ export default { '数据监测':'数据监测', '进水':'进水', '出水':'出水', - '消耗':'消耗', + '消耗':'消耗', + '储水':'储水', '用电':'用电', '总体趋势图':'总体趋势图', '近一周':'Last Week', diff --git a/src/locales/lang/zh.ts b/src/locales/lang/zh.ts index 5ce53a1..cee755d 100644 --- a/src/locales/lang/zh.ts +++ b/src/locales/lang/zh.ts @@ -295,6 +295,7 @@ export default { '进水':'进水', '出水':'出水', '消耗':'消耗', + '储水':'储水', '用电':'用电', '总体趋势图':'总体趋势图', '近一周':'近一周', diff --git a/src/views/Hazardous/index.vue b/src/views/Hazardous/index.vue index f710483..c34b8dc 100644 --- a/src/views/Hazardous/index.vue +++ b/src/views/Hazardous/index.vue @@ -184,6 +184,10 @@ const getGuoJian24TrendData = async () => { config.yanwu.value = data.top.yanwu config.ranqi.value = data.top.ranqi + config.ranqi.limit = data.limit.ranqi + config.xielou.limit = data.limit.xielou + config.yanwu.limit = data.limit.yanwu + calc.math = [ { key: '湿度%RH',