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.
21 lines
379 B
21 lines
379 B
/** 首页-广告区域数据类型 */
|
|
export type BannerItem = {
|
|
/** 跳转链接 */
|
|
hrefUrl: string
|
|
/** id */
|
|
id: string
|
|
/** 图片链接 */
|
|
imgUrl: string
|
|
/** 跳转类型 */
|
|
type: number
|
|
}
|
|
|
|
/** 首页-前台类目数据类型 */
|
|
export type CategoryItem = {
|
|
/** 图标路径 */
|
|
icon: string
|
|
/** id */
|
|
id: string
|
|
/** 分类名称 */
|
|
name: string
|
|
}
|