Enhance MessageList component to include complete contact information during message updates. Implement a new method in ContactManager for retrieving contacts by ID and type, ensuring accurate avatar and nickname display. Trigger UI refresh on data changes to improve user experience.

This commit is contained in:
2025-10-27 11:43:35 +08:00
parent 77072594d2
commit 3ff3e40d8e
4 changed files with 117 additions and 44 deletions

View File

@@ -21,6 +21,7 @@ export interface Message {
isOnline?: boolean;
momentsMax: number;
momentsNum: number;
wechatAccountId: number;
[key: string]: any;
}