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

@ -16,6 +16,9 @@ export interface MeiliProductIndex {
/** 产品类型 **/
type: string;
/** 产品缩略图 **/
cover: string;
}
/**
@ -36,6 +39,9 @@ export interface MeiliSolutionIndex {
/** 解决方案类型 **/
type: string;
/** 解决方案缩略图 **/
cover: string;
}
/**

View File

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