chore(message): 清理调试日志
- 移除 console.log 调试语句 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Showing
1 changed file
with
0 additions
and
4 deletions
| ... | @@ -116,10 +116,6 @@ export const useUserStore = defineStore('user', () => { | ... | @@ -116,10 +116,6 @@ export const useUserStore = defineStore('user', () => { |
| 116 | // 从 res.data 中读取 unread_msg_count(不在 user 对象里) | 116 | // 从 res.data 中读取 unread_msg_count(不在 user 对象里) |
| 117 | unreadMsgCount.value = res.data?.unread_msg_count ?? 0 | 117 | unreadMsgCount.value = res.data?.unread_msg_count ?? 0 |
| 118 | 118 | ||
| 119 | - console.log('[UserStore] 用户信息已更新:', { | ||
| 120 | - unreadMsgCount: unreadMsgCount.value | ||
| 121 | - }) | ||
| 122 | - | ||
| 123 | // 更新最后请求时间 | 119 | // 更新最后请求时间 |
| 124 | lastFetchTime = Date.now() | 120 | lastFetchTime = Date.now() |
| 125 | } else { | 121 | } else { | ... | ... |
-
Please register or login to post a comment