From 828f2f412b36e03384d62874d3283f05afa7d4ea Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Tue, 15 Apr 2025 17:33:39 +0800
Subject: [PATCH] feat: 事件根据日期更新

---
 src/layout/Header.vue |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/layout/Header.vue b/src/layout/Header.vue
index 822e18f..17a4f57 100644
--- a/src/layout/Header.vue
+++ b/src/layout/Header.vue
@@ -50,7 +50,7 @@
 ]);
 
 const handleClick = ({ path, name }) => {
-  if (!['首页', '任务管理'].includes(name)) return ElMessage.warning('正在开发中');
+  if (!['首页', '任务管理'].includes(name)) return ElMessage.warning('正在加急开发中...');
   // 更新 leftList 的 active 状态
   leftList.value.forEach(item => {
     item.active = item.path === path;
@@ -60,7 +60,6 @@
   rightList.value.forEach(item => {
     item.active = item.path === path;
   });
-  console.log(path);
   // 跳转到指定页面
   router.push(path);
 };
@@ -153,6 +152,7 @@
       text-align: center;
       font-style: normal;
       text-transform: none;
+			cursor: pointer;
     }
   }
 }

--
Gitblit v1.9.3