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.
37 lines
667 B
37 lines
667 B
/** 首页-广告区域数据类型 */
|
|
export type BannerItem = {
|
|
/** 跳转链接 */
|
|
hrefUrl: string
|
|
/** id */
|
|
id: string
|
|
/** 图片链接 */
|
|
imgUrl: string
|
|
/** 跳转类型 */
|
|
type: number
|
|
}
|
|
|
|
/** 首页-前台类目数据类型 */
|
|
export type CategoryItem = {
|
|
/** 图标路径 */
|
|
icon: string
|
|
/** id */
|
|
id: string
|
|
/** 分类名称 */
|
|
name: string
|
|
}
|
|
|
|
/** 首页-热门推荐数据类型 */
|
|
export type HotItem = {
|
|
/** 说明 */
|
|
alt: string
|
|
/** id */
|
|
id: string
|
|
/** 图片集合[ 图片路径 ] */
|
|
pictures: string[]
|
|
/** 跳转地址 */
|
|
target: string
|
|
/** 标题 */
|
|
title: string
|
|
/** 推荐类型 */
|
|
type: string
|
|
}
|