From a1a9053aaad819f0d89831ae9d8e47eb9ab1077a Mon Sep 17 00:00:00 2001 From: YunaiV Date: Mon, 27 Apr 2026 00:51:31 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(im):=20=E4=BC=98=E5=8C=96=20Me?= =?UTF-8?q?ssagePage.vue=20=E9=A1=B5=E9=9D=A2=EF=BC=8C=E5=AF=B9=E9=BD=90?= =?UTF-8?q?=E5=BE=AE=E4=BF=A1=E4=BA=A4=E4=BA=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/im/utils/storage.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/im/utils/storage.ts b/src/views/im/utils/storage.ts index fb8eb6daf..a6c38f9e2 100644 --- a/src/views/im/utils/storage.ts +++ b/src/views/im/utils/storage.ts @@ -44,6 +44,6 @@ export const StorageKeys = { conversationMessage: (userId: number | string, type: number, targetId: number) => `conversation:message:${userId}:${type}:${targetId}`, - /** 侧边栏宽度(localStorage);page 区分消息 / 好友 / 群三个 Tab,独立记忆。 */ - asideWidth: (page: 'message' | 'friend' | 'group') => `im:aside:${page}` + /** 侧边栏宽度(localStorage);三个 Tab 共用一份记忆,对齐微信(拖一次到处一致)。 */ + asideWidth: 'im:aside' } as const