- 点击文档条目时,跳转到对应的download路由 - 修改搜索条目转换逻辑,将product_documents类型条目的id有product_document的id改为文件uuid
14 lines
252 B
TypeScript
14 lines
252 B
TypeScript
export interface SearchItemView {
|
|
/** 唯一标识符 **/
|
|
id: number | string;
|
|
|
|
/** 条目类型 **/
|
|
type: 'product' | 'solution' | 'question' | 'document';
|
|
|
|
/** 条目标题 **/
|
|
title: string;
|
|
|
|
/** 条目摘要 **/
|
|
summary?: string;
|
|
}
|