feat:增加菜谱显示模块

This commit is contained in:
2025-06-25 19:55:23 +08:00
parent eff6078a98
commit 37b2e588db
22 changed files with 673 additions and 92 deletions

View File

@@ -87,10 +87,10 @@ export interface IComment {
}
export interface IMoment {
id: number;
username: string;
avatar: string;
id?: number;
username?: string;
avatar?: string;
content: string;
date: string;
commentList: IComment[];
date?: string;
commentList?: IComment[];
}