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.

37 lines
667 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. }
  21. /** 首页-热门推荐数据类型 */
  22. export type HotItem = {
  23. /** 说明 */
  24. alt: string
  25. /** id */
  26. id: string
  27. /** 图片集合[ 图片路径 ] */
  28. pictures: string[]
  29. /** 跳转地址 */
  30. target: string
  31. /** 标题 */
  32. title: string
  33. /** 推荐类型 */
  34. type: string
  35. }