feat: 为搜索页栏目添加图片缩略图功能

- 图片预览:产品与解决方案栏目添加缩略图功能
- 组件提取:在搜索结果页,将单个搜索结果单独提取为组件SearchResultCard
This commit is contained in:
2025-12-05 14:56:24 +08:00
parent 246a0b9d4f
commit c9b5b1fad9
5 changed files with 84 additions and 10 deletions

View File

@ -10,4 +10,7 @@ export interface SearchItemView {
/** 条目摘要 **/
summary: string;
/** 条目预览图 **/
thumbnail?: string;
}