重构ProfileCard组件以增强选项卡管理并改善用户体验。引入基于可用键的动态选项卡呈现,并更新选项卡标题的样式。调整活动关键帧和渲染关键帧的状态管理。更新QuickWords和ProfileModules集成。修改GroupModal和QuickReplyModal以使用“destroyOnHidden”以获得更好的模式处理。

This commit is contained in:
2025-11-13 16:07:52 +08:00
parent ae4a165b07
commit a6ee45f3e3
10 changed files with 157 additions and 80 deletions

View File

@@ -394,7 +394,7 @@ export const useWebSocketStore = createPersistStore<WebSocketState>(
set({
messages: [...currentState.messages, newMessage],
unreadCount: currentState.config.unreadCount + 1,
unreadCount: (currentState.unreadCount ?? 0) + 1,
});
//消息处理器
msgManageCore(data);