Q3学习计划
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

  1. /** 首页-广告区域数据类型 */
  2. export type BannerItem = {
  3. /** 跳转链接 */
  4. hrefUrl: string
  5. /** id */
  6. id: string
  7. /** 图片链接 */
  8. imgUrl: string
  9. /** 跳转类型 */
  10. type: number
  11. }
  12. /** 首页-前台类目数据类型 */
  13. export type CategoryItem = {
  14. /** 图标路径 */
  15. icon: string
  16. /** id */
  17. id: string
  18. /** 分类名称 */
  19. name: string
  20. }