From c50f1ffcb454cb6d4430326927638ee771b521b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=B7=B3?= <454313500@qq.com> Date: Tue, 30 Jan 2024 18:30:26 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E6=B4=BB=E5=8A=A8?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E5=85=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Yi.Bbs.Vue3/src/layout/AppHeader.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Yi.Bbs.Vue3/src/layout/AppHeader.vue b/Yi.Bbs.Vue3/src/layout/AppHeader.vue index ecb0b1dd..b3558f7c 100644 --- a/Yi.Bbs.Vue3/src/layout/AppHeader.vue +++ b/Yi.Bbs.Vue3/src/layout/AppHeader.vue @@ -55,7 +55,9 @@ 进入个人中心 - 其他 + 进入活动页面 登出 @@ -119,6 +121,9 @@ const enterIndex = () => { const enterProfile = () => { router.push(`/profile/${userStore.userName}`); }; +const enterActivity=()=>{ + router.push(`/activity`); +} const toLogin = () => { clearStorage(); Session.set("currentPath", route.path);