From a3f357e8a60443b74b64c7479113c68eb35ce1f5 Mon Sep 17 00:00:00 2001 From: ZZJ <10913410+zzj2100@user.noreply.gitee.com> Date: 星期五, 15 七月 2022 19:44:57 +0800 Subject: [PATCH] 控制轮询 --- src/pages/desktop/index/components/NotificationCenter.vue | 7 ++----- 1 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/pages/desktop/index/components/NotificationCenter.vue b/src/pages/desktop/index/components/NotificationCenter.vue index 32e2fdb..961d156 100644 --- a/src/pages/desktop/index/components/NotificationCenter.vue +++ b/src/pages/desktop/index/components/NotificationCenter.vue @@ -18,8 +18,6 @@ </div> <weather-notice></weather-notice> - - <copyright></copyright> </div> <div class="notification-center-body" v-if="notificationCenterType === 1"> <message-notice @@ -42,12 +40,11 @@ import Calender from './Calendar'; import WeatherNotice from './WeatherNotice'; import MessageNotice from './MessageNotice'; -import Copyright from './Copyright'; export default { name: "NotificationCenter", components: { - WeatherNotice, MessageNotice, Copyright + WeatherNotice, MessageNotice }, data() { return { @@ -78,7 +75,7 @@ height: calc(100% - 30px); width: 300px; background-color: rgba(200, 200, 200, 0.7); - box-shadow: -1px 1px 2px rgba(0,0,0,.3); + box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.3); z-index: 140; } -- Gitblit v1.8.0