搜索、小助手推荐位

This commit is contained in:
2025-11-18 11:48:01 +08:00
parent 2ce3684711
commit 049b6f2cf3
18 changed files with 1280 additions and 23 deletions

View File

@@ -331,6 +331,16 @@ export interface TaskItemVO extends LearningTask {
progress?: number;
/** 完成时间 */
completeTime?: string;
/** 封面图片(用于搜索结果展示) */
coverImage?: string;
/** 简介(用于搜索结果展示) */
summary?: string;
/** 作者(用于搜索结果展示) */
author?: string;
/** 浏览次数(用于搜索结果展示) */
viewCount?: number;
/** 发布时间(用于搜索结果展示) */
publishTime?: Date | string;
}
/**