From 8bc3f5686c9a7d6d082cec1324720f90a8c4da62 Mon Sep 17 00:00:00 2001
From: xiaoxian521 <1923740402@qq.com>
Date: Mon, 15 Dec 2025 17:42:11 +0800
Subject: [PATCH] =?UTF-8?q?feat:=20`layout`=E5=8F=B3=E4=B8=8A=E8=A7=92?=
=?UTF-8?q?=E7=9A=84=E6=93=8D=E4=BD=9C=E6=8C=89=E9=92=AE=E6=B7=BB=E5=8A=A0?=
=?UTF-8?q?=E5=8A=A8=E6=95=88?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/layout/components/lay-navbar/index.vue | 10 +++--
src/layout/components/lay-notice/index.vue | 42 +++++++++++++++++--
src/layout/components/lay-search/index.vue | 2 +-
.../components/SidebarFullScreen.vue | 5 ++-
src/style/index.scss | 15 +++++++
src/style/sidebar.scss | 17 +++-----
src/style/tailwind.css | 4 ++
7 files changed, 73 insertions(+), 22 deletions(-)
diff --git a/src/layout/components/lay-navbar/index.vue b/src/layout/components/lay-navbar/index.vue
index 29a5d10ac..87dbd28de 100644
--- a/src/layout/components/lay-navbar/index.vue
+++ b/src/layout/components/lay-navbar/index.vue
@@ -53,9 +53,11 @@ const { t, locale, translationCh, translationEn } = useTranslationLang();
diff --git a/src/layout/components/lay-notice/index.vue b/src/layout/components/lay-notice/index.vue
index 6ea5fb7db..477f4cd1f 100644
--- a/src/layout/components/lay-notice/index.vue
+++ b/src/layout/components/lay-notice/index.vue
@@ -3,7 +3,7 @@ import { useI18n } from "vue-i18n";
import { ref, computed } from "vue";
import { noticesData } from "./data";
import NoticeList from "./components/NoticeList.vue";
-import BellIcon from "~icons/ep/bell";
+import BellIcon from "~icons/lucide/bell";
const { t } = useI18n();
const noticesNum = ref(0);
@@ -25,10 +25,10 @@ const getLabel = computed(
'dropdown-badge',
'navbar-bg-hover',
'select-none',
- Number(noticesNum) !== 0 && 'mr-[10px]'
+ Number(noticesNum) !== 0 && 'mr-[7px]'
]"
>
-
+
@@ -65,6 +65,34 @@ const getLabel = computed(