From c58faef08795d83d4e284f3bc8acfed5df33f028 Mon Sep 17 00:00:00 2001 From: haoxuan <haoxuan> Date: 星期五, 01 十二月 2023 16:23:06 +0800 Subject: [PATCH] 设备负荷组件 --- src/views/cockpitPage/index.vue | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/src/views/cockpitPage/index.vue b/src/views/cockpitPage/index.vue index f0ce3f4..f5b44ca 100644 --- a/src/views/cockpitPage/index.vue +++ b/src/views/cockpitPage/index.vue @@ -9,6 +9,9 @@ <template #leftBlock3> <CountView></CountView> </template> + <template #rightBlock1> + <DeviceChart @should-reload="reloadAllData"></DeviceChart> + </template> <template #rightBlock2> <MaterialChart @should-reload="reloadAllData"></MaterialChart> </template> @@ -23,12 +26,14 @@ import MachineStartupRate from "@/views/cockpitPage/components/MachineStartupRate"; import CountView from "@/views/cockpitPage/components/CountView"; import BackgroundBoardLayout from "@/components/cockpitPage/BackgroundBoardLayout.vue"; +import DeviceChart from "@/views/cockpitPage/components/DeviceChart.vue"; import MaterialChart from "@/views/cockpitPage/components/MaterialChart.vue"; import BarChart from "@/views/cockpitPage/components/BarChart.vue"; export default { components: { StatisticalBox, BackgroundBoardLayout, + DeviceChart, MaterialChart, BarChart, MachineStartupRate, -- Gitblit v1.8.0