From 428b83582c37c061f4b6d82c7dd02b0731583cc5 Mon Sep 17 00:00:00 2001 From: zyx <2134208960@qq.com> Date: Wed, 9 Mar 2022 18:12:14 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=BE=E5=A4=87=E6=8A=A5=E8=AD=A6=E6=AC=A1?= =?UTF-8?q?=E6=95=B0=E9=9D=A2=E6=9D=BF=E7=BB=84=E4=BB=B6=E6=8B=86=E5=88=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/css/index.css | 2 +- .../ChartsComponents/AlarmCounts.vue | 456 ++++++++++++++++++ src/views/MainPage.vue | 25 +- 3 files changed, 460 insertions(+), 23 deletions(-) create mode 100644 src/components/ChartsComponents/AlarmCounts.vue diff --git a/src/assets/css/index.css b/src/assets/css/index.css index c18cdb8..6e22272 100644 --- a/src/assets/css/index.css +++ b/src/assets/css/index.css @@ -12,7 +12,7 @@ body { width: 1920px; height: 1080px; background: rgba(0, 0, 0, 1) - url(../images/c40d4615-3d52-42cf-87b6-ae06d15df385.png) no-repeat; + url(../images/c40d4615-3d52-42cf-87b6-ae06d15df385.png) no-repeat; background-size: cover; overflow-x: hidden; transform-origin: 0px 0px; diff --git a/src/components/ChartsComponents/AlarmCounts.vue b/src/components/ChartsComponents/AlarmCounts.vue new file mode 100644 index 0000000..8b247dd --- /dev/null +++ b/src/components/ChartsComponents/AlarmCounts.vue @@ -0,0 +1,456 @@ + + + + + diff --git a/src/views/MainPage.vue b/src/views/MainPage.vue index 71b3a6e..efb75da 100644 --- a/src/views/MainPage.vue +++ b/src/views/MainPage.vue @@ -433,28 +433,7 @@ -
- - -
- - - - -
- - - - -
- -
- -
+ @@ -806,8 +785,10 @@ import 'dayjs/locale/zh-cn' import utils from '../assets/js/utils.js' import CenterTopChartsComponets from '@/components/ChartsComponents/CenterTopChartsComponets' import RightChart from '@/components/ChartsComponents/RightCharts' +import AlarmCounts from "@/components/ChartsComponents/AlarmCounts"; export default { components: { + AlarmCounts, RightChart, // swiper, // swiperSlide, -- Gitee