From a9f2697ef0e11c570bf7c5064a05a7494bb338ed Mon Sep 17 00:00:00 2001 From: "Ray.Hao" <1490493387@qq.com> Date: Mon, 10 Nov 2025 10:49:18 +0800 Subject: [PATCH] fix(dashboard): remove hardcoded user nickname modification --- src/views/dashboard/index.vue | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/views/dashboard/index.vue b/src/views/dashboard/index.vue index 794f819a..679962ef 100644 --- a/src/views/dashboard/index.vue +++ b/src/views/dashboard/index.vue @@ -617,10 +617,6 @@ watch( // 组件挂载后加载访客统计数据和通知公告数据 onMounted(() => { fetchVisitStatsData(); - - // 修改用户昵称为"奥特曼" - userStore.userInfo.nickname = "奥特曼"; - console.log("用户昵称已修改为:", userStore.userInfo.nickname); });