You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ocr-web/types/home.d.ts

20 lines
367 B

// 过滤项
export interface Filter {
key: string // izShow,izUpload...
value: any // 值
}
// 过滤
export interface FilterEntity {
name: string // 过滤名称
favorite: boolean// 是否收藏
isDefaultFilter: boolean// 默认筛选
filterList: Filter[] // 过滤项列表
}
// 搜索
export interface SearchEntity {
key: string
label: string
}