From 7f223e7c8f267cff6754f7374b7ec74b90ca2f64 Mon Sep 17 00:00:00 2001 From: yangfeng <wanwan926_4@163.com> Date: 星期五, 01 十二月 2023 19:20:23 +0800 Subject: [PATCH] 订单完成比 --- src/views/cockpitPage/index.vue | 45 ++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 44 insertions(+), 1 deletions(-) diff --git a/src/views/cockpitPage/index.vue b/src/views/cockpitPage/index.vue index ffaeb1d..ca65da2 100644 --- a/src/views/cockpitPage/index.vue +++ b/src/views/cockpitPage/index.vue @@ -1,12 +1,55 @@ <template> - <BackgroundBoardLayout></BackgroundBoardLayout> + <BackgroundBoardLayout> + <template #leftBlock1> + <StatisticalBox></StatisticalBox> + </template> + <template #leftBlock2> + <MachineStartupRate></MachineStartupRate> + </template> + <template #leftBlock3> + <CountView></CountView> + </template> + <template #leftBlock4> + <OrderCompleteRadio></OrderCompleteRadio> + </template> + <template #leftBlock6> + <PerSonnelProductivity + @should-reload="reloadAllData" + ></PerSonnelProductivity> + </template> + <template #rightBlock1> + <DeviceChart @should-reload="reloadAllData"></DeviceChart> + </template> + <template #rightBlock2> + <MaterialChart @should-reload="reloadAllData"></MaterialChart> + </template> + <template #rightBlock3> + <BarChart @should-reload="reloadAllData"></BarChart> + </template> + </BackgroundBoardLayout> </template> <script> +import StatisticalBox from "@/views/cockpitPage/components/StatisticalBox"; +import MachineStartupRate from "@/views/cockpitPage/components/MachineStartupRate"; +import CountView from "@/views/cockpitPage/components/CountView"; import BackgroundBoardLayout from "@/components/cockpitPage/BackgroundBoardLayout.vue"; +import PerSonnelProductivity from "@/views/cockpitPage/components/PerSonnelProductivity.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"; +import OrderCompleteRadio from "@/views/cockpitPage/components/OrderCompleteRadio"; export default { components: { + StatisticalBox, BackgroundBoardLayout, + PerSonnelProductivity, + DeviceChart, + MaterialChart, + BarChart, + MachineStartupRate, + CountView, + OrderCompleteRadio, }, props: {}, data() { -- Gitblit v1.8.0