Hanye官网
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /**
  2. * 按用途产品展示接口
  3. * @returns 按用途分类的产品数据
  4. */
  5. export default defineEventHandler(async () => {
  6. // 模拟数据
  7. const usageList = [
  8. {
  9. id: 1,
  10. name: '外付けストレージ化',
  11. products: [
  12. {
  13. id: 1,
  14. title: 'Hanye Q60-2TST3',
  15. description: '2TB SSD UP TO 550MB/s',
  16. image: 'https://picsum.photos/300/300?random=1',
  17. link: '/products/1'
  18. },
  19. {
  20. id: 2,
  21. title: 'Hanye Q60-4TST3',
  22. description: '4TB SSD UP TO 550MB/s',
  23. image: 'https://picsum.photos/300/300?random=2',
  24. link: '/products/2'
  25. },
  26. {
  27. id: 3,
  28. title: 'Hanye Q60-8TST3',
  29. description: '8TB SSD UP TO 550MB/s',
  30. image: 'https://picsum.photos/300/300?random=3',
  31. link: '/products/3'
  32. },
  33. {
  34. id: 4,
  35. title: 'Hanye Q60-16TST3',
  36. description: '16TB SSD UP TO 550MB/s',
  37. image: 'https://picsum.photos/300/300?random=4',
  38. link: '/products/4'
  39. },
  40. {
  41. id: 5,
  42. title: 'Hanye Q60-32TST3',
  43. description: '32TB SSD UP TO 550MB/s',
  44. image: 'https://picsum.photos/300/300?random=5',
  45. link: '/products/5'
  46. }
  47. ]
  48. },
  49. {
  50. id: 2,
  51. name: 'PC高速化',
  52. products: [
  53. {
  54. id: 4,
  55. title: 'Hanye Q60-2TST3',
  56. description: '2TB SSD UP TO 550MB/s',
  57. image: 'https://picsum.photos/300/300?random=4',
  58. link: '/products/4'
  59. },
  60. {
  61. id: 5,
  62. title: 'Hanye Q60-4TST3',
  63. description: '4TB SSD UP TO 550MB/s',
  64. image: 'https://picsum.photos/300/300?random=5',
  65. link: '/products/5'
  66. },
  67. {
  68. id: 6,
  69. title: 'Hanye Q60-8TST3',
  70. description: '8TB SSD UP TO 550MB/s',
  71. image: 'https://picsum.photos/300/300?random=6',
  72. link: '/products/6'
  73. }
  74. ]
  75. },
  76. {
  77. id: 3,
  78. name: 'データバックアップ',
  79. products: [
  80. {
  81. id: 7,
  82. title: 'Hanye Q60-2TST3',
  83. description: '2TB SSD UP TO 550MB/s',
  84. image: 'https://picsum.photos/300/300?random=7',
  85. link: '/products/7'
  86. },
  87. {
  88. id: 8,
  89. title: 'Hanye Q60-4TST3',
  90. description: '4TB SSD UP TO 550MB/s',
  91. image: 'https://picsum.photos/300/300?random=8',
  92. link: '/products/8'
  93. },
  94. {
  95. id: 9,
  96. title: 'Hanye Q60-8TST3',
  97. description: '8TB SSD UP TO 550MB/s',
  98. image: 'https://picsum.photos/300/300?random=9',
  99. link: '/products/9'
  100. }
  101. ]
  102. }
  103. ]
  104. return {
  105. code: 200,
  106. data: usageList,
  107. message: '获取按用途产品数据成功'
  108. }
  109. })