feat: 添加会话列表和搜索功能,重构聊天界面组件

This commit is contained in:
2026-03-09 08:12:30 +07:00
parent 007794688b
commit 212b3fa8de
12 changed files with 640 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
export type ConversationKind = "system" | "direct";
export type ConversationItem = {
id: string;
kind: ConversationKind;
title: string;
preview: string;
timeLabel: string;
avatarUrl?: string;
unreadCount?: number;
};