敢为人鲜小程序前端代码仓库
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.

165 lines
4.1 KiB

  1. // 首页数据mock
  2. const homeData = {
  3. // 轮播图数据
  4. banners: [
  5. {
  6. id: 1,
  7. image: '/static/image/红烧肉.webp',
  8. url: '/pages/product/detail'
  9. },
  10. {
  11. id: 2,
  12. image: '/static/image/古茗店面.webp',
  13. url: '/pages/product/detail'
  14. },
  15. {
  16. id: 3,
  17. image: '/static/image/home/1.png',
  18. url: '/pages/product/detail'
  19. }
  20. ],
  21. // 餐厅信息
  22. restaurant: {
  23. logo: '/static/image/logo.webp',
  24. name: '大卫熊品质午餐',
  25. notice: '5月16日周五取【Davv Bear 大卫熊品质】',
  26. description: '近期发布'
  27. },
  28. // 会员权益与积分商城
  29. memberBenefits: {
  30. title: '会员权益',
  31. desc: '最高9.0折',
  32. icon: '/static/image/券.webp',
  33. url: '/pages/member/benefits'
  34. },
  35. pointsMall: {
  36. title: '积分商城',
  37. desc: '跟团赚积分',
  38. icon: '/static/image/红包.webp',
  39. url: '/pages/points/mall'
  40. },
  41. // 团员晒单数据
  42. teamSharing: {
  43. title: '团员晒单',
  44. descriptions: [
  45. '吃的太快,忘记拍照了,酸笋够味...',
  46. '这家店的红烧肉太香了,搭配米饭刚刚好...',
  47. '必须给黑椒肥牛打call,真的很下饭...',
  48. '今天终于吃到了心心念念的大卫熊午餐...'
  49. ],
  50. images: [
  51. '/static/image/红烧肉.webp',
  52. '/static/image/member/1.png',
  53. '/static/image/member/2.png'
  54. ]
  55. },
  56. // 产品标签页
  57. productTabs: [
  58. {
  59. id: 1,
  60. name: '默认'
  61. },
  62. {
  63. id: 2,
  64. name: '上新'
  65. },
  66. {
  67. id: 3,
  68. name: '销量'
  69. }
  70. ],
  71. // 产品列表
  72. tags: ['今日热卖845件', '新人立减9', '满22减2', '满50减6', '满80减10', '大转盘'],
  73. priceRange: '¥0.1-9999',
  74. foods: [
  75. {
  76. id: 1,
  77. name: '红烧肉套餐',
  78. image: '/static/image/红烧肉.webp',
  79. price: 19.9,
  80. originalPrice: 29.9,
  81. desc: '米饭+红烧肉+配菜+卤蛋'
  82. },
  83. {
  84. id: 2,
  85. name: '小炒黄牛肉',
  86. image: '/static/image/member/1.png',
  87. price: 22.8,
  88. originalPrice: 32.8,
  89. desc: '米饭+黄牛肉+时蔬'
  90. },
  91. {
  92. id: 3,
  93. name: '黑椒肥牛饭',
  94. image: '/static/image/member/2.png',
  95. price: 20.8,
  96. originalPrice: 30.8,
  97. desc: '米饭+黑椒肥牛+时蔬'
  98. }
  99. ],
  100. // 跟团学习
  101. teamLearning: {
  102. title: '最新跟团学习',
  103. members: [
  104. {
  105. id: 1,
  106. avatar: '/static/image/中森明菜.webp',
  107. name: '学生妹',
  108. time: '刚刚'
  109. },
  110. {
  111. id: 2,
  112. avatar: '/static/image/中森明菜.webp',
  113. name: '美女团长',
  114. time: '1分钟前'
  115. },
  116. {
  117. id: 3,
  118. avatar: '/static/image/中森明菜.webp',
  119. name: '小可爱',
  120. time: '2分钟前'
  121. }
  122. ]
  123. },
  124. // 订单通知
  125. orderNotifications: [
  126. {
  127. id: 19141,
  128. user: '3**',
  129. time: '1分钟前',
  130. content: '【单点】小炒黄牛肉',
  131. count: 1
  132. },
  133. {
  134. id: 19145,
  135. user: 'B**',
  136. time: '1分钟前',
  137. content: '黑椒肥牛饭(1份)',
  138. count: 1
  139. },
  140. {
  141. id: 19144,
  142. user: '吃**',
  143. time: '1分钟前',
  144. content: '【单点】黑盒220g',
  145. count: 1
  146. }
  147. ],
  148. // 统计信息
  149. stats: {
  150. viewCount: '1.9万人跟团',
  151. orderCount: '6771人尝过'
  152. }
  153. }
  154. // 统一导出
  155. module.exports = {
  156. homeData
  157. }