From 580d2338e820e1b4b9a5d929c0cc362ae846f392 Mon Sep 17 00:00:00 2001 From: ovo Date: Sat, 7 Dec 2024 22:46:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=B9=E6=8E=A5=E5=90=8E=E7=AB=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 175 +++---------------------------- src/components/layout/TopBar.vue | 8 ++ src/views/DashboardView.vue | 4 + src/views/HomeView.vue | 5 + 4 files changed, 30 insertions(+), 162 deletions(-) diff --git a/src/App.vue b/src/App.vue index 1e3cc05..04c7d84 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,174 +1,25 @@ - - - diff --git a/src/components/layout/TopBar.vue b/src/components/layout/TopBar.vue index b8039a8..587822b 100644 --- a/src/components/layout/TopBar.vue +++ b/src/components/layout/TopBar.vue @@ -97,6 +97,8 @@ const handleLogout = async () => { height: 60px; background-color: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); + position: relative; + z-index: 1000; } .logo { @@ -110,6 +112,8 @@ const handleLogout = async () => { display: flex; align-items: center; gap: 16px; + position: relative; + z-index: 1001; } .user-info { @@ -155,4 +159,8 @@ const handleLogout = async () => { .user-info:hover .el-icon--right { transform: rotate(180deg); } + +:deep(.el-dropdown-menu) { + z-index: 1002 !important; +} diff --git a/src/views/DashboardView.vue b/src/views/DashboardView.vue index e0938bd..51c2987 100644 --- a/src/views/DashboardView.vue +++ b/src/views/DashboardView.vue @@ -967,4 +967,8 @@ onBeforeUnmount(() => { width: 100%; } } + +.dashboard-container { + z-index: 1; +} \ No newline at end of file diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue index aa2927c..4dc9ab8 100644 --- a/src/views/HomeView.vue +++ b/src/views/HomeView.vue @@ -352,4 +352,9 @@ const stats = [ margin-bottom: 20px; } } + +.home-container { + /* ... 其他样式 ... */ + z-index: 1; /* 确保比 TopBar 的 z-index 小 */ +}