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.

156 lines
7.4 KiB

  1. <?php
  2. namespace App\Controller\v3;
  3. use App\Constants\v3\ActivityType;
  4. use App\Constants\v3\Tabs;
  5. use App\Controller\BaseController;
  6. /**
  7. * 首页相关
  8. * Class HomeController
  9. * @package App\Controller\v3
  10. */
  11. class HomeController extends BaseController
  12. {
  13. /**
  14. * 小程序首页,根据market_id
  15. * 1.banner数据
  16. * 2.一级分类
  17. * 3.活动数据(秒杀、团购、新品、无)
  18. * 4.tabs数据
  19. */
  20. public function appletIndex()
  21. {
  22. $seconds = 25600;
  23. $days = bcdiv($seconds, 86400);
  24. $leftSeconds = bcsub($seconds, bcmul($days,86400));
  25. $hours = bcdiv($leftSeconds,3600);
  26. $leftSeconds = bcsub($leftSeconds, bcmul($hours,3600));
  27. $minutes = bcdiv($leftSeconds,60);
  28. $leftSeconds = bcsub($leftSeconds, bcmul($minutes,60));
  29. return $this->success([
  30. 'banners' => [
  31. [
  32. 'id' => 2,
  33. 'img' => 'https://store.lanzu.vip/attachment/images/2/2020/06/nfXxIhEgH71hcSxSz2hHnaaEaF1g3A.jpg',
  34. 'title' => '懒族生活',
  35. 'subtitle' => '满足您的美味生活',
  36. 'redirect_type' => '',
  37. 'redirect_url' => '',
  38. ],
  39. [
  40. 'id' => 3,
  41. 'img' => 'http://lanzutest.lanzulive.com/attachment/images/2/2020/08/PY55Y3Mz17yJo17rv1Z7vImX1V5159.jpg',
  42. 'title' => '鲜菜有爱',
  43. 'subtitle' => '很实在',
  44. 'redirect_type' => 'page',
  45. 'redirect_url' => '/pages/index',
  46. ],
  47. ],
  48. 'categories' => [
  49. ['id' => 1, 'icon' => config('alioss.img_host').'/attachment/types/卤菜.png', 'name' => '卤菜'],
  50. ['id' => 2, 'icon' => config('alioss.img_host').'/attachment/types/水果.png', 'name' => '水果'],
  51. ['id' => 3, 'icon' => config('alioss.img_host').'/attachment/types/肉.png', 'name' => '肉'],
  52. ['id' => 4, 'icon' => config('alioss.img_host').'/attachment/types/蔬菜.png', 'name' => '蔬菜'],
  53. ['id' => 5, 'icon' => config('alioss.img_host').'/attachment/types/蔬菜.png', 'name' => '蔬菜'],
  54. ['id' => 6, 'icon' => config('alioss.img_host').'/attachment/types/肉.png', 'name' => '肉'],
  55. ['id' => 7, 'icon' => config('alioss.img_host').'/attachment/types/水果.png', 'name' => '水果'],
  56. ['id' => 8, 'icon' => config('alioss.img_host').'/attachment/types/卤菜.png', 'name' => '卤菜'],
  57. ],
  58. 'activity' => [
  59. 'type' => ActivityType::FLASH_SALE,
  60. 'goods' => [
  61. [
  62. 'id' => 1,
  63. 'cover_img' => config('alioss.img_host').'/attachment/types/c9b656181bbbc463624ca3803c5be7539f2fd62253f9a-cwVLri.png',
  64. 'name' => '【优质】大白菜',
  65. 'spec' => [
  66. ['key' => '净含量', 'value' => '500g']
  67. ],
  68. 'original_price' => 50.5,
  69. 'price' => 25.25,
  70. 'inventory' => 0,
  71. 'month_sales' => 20,
  72. 'total_sales' => 20,
  73. 'cart_num' => 0,
  74. 'is_effective' => 1,
  75. 'noneffective_note' => '已抢光',
  76. 'total_seconds' => $seconds,
  77. 'days' => $days,
  78. 'hours' => $hours,
  79. 'minutes' => $minutes,
  80. 'seconds' => $leftSeconds,
  81. ],[
  82. 'id' => 1,
  83. 'cover_img' => config('alioss.img_host').'/attachment/types/c9b656181bbbc463624ca3803c5be7539f2fd62253f9a-cwVLri.png',
  84. 'name' => '【优质】大白菜',
  85. 'spec' => [
  86. ['key' => '净含量', 'value' => '500g']
  87. ],
  88. 'original_price' => 50.5,
  89. 'price' => 25.25,
  90. 'inventory' => 0,
  91. 'month_sales' => 20,
  92. 'total_sales' => 20,
  93. 'cart_num' => 0,
  94. 'is_effective' => 1,
  95. 'noneffective_note' => '已抢光',
  96. 'total_seconds' => $seconds,
  97. 'days' => $days,
  98. 'hours' => $hours,
  99. 'minutes' => $minutes,
  100. 'seconds' => $leftSeconds,
  101. ],[
  102. 'id' => 1,
  103. 'cover_img' => config('alioss.img_host').'/attachment/types/c9b656181bbbc463624ca3803c5be7539f2fd62253f9a-cwVLri.png',
  104. 'name' => '【优质】大白菜',
  105. 'spec' => [
  106. ['key' => '净含量', 'value' => '500g']
  107. ],
  108. 'original_price' => 50.5,
  109. 'price' => 25.25,
  110. 'inventory' => 0,
  111. 'month_sales' => 20,
  112. 'total_sales' => 20,
  113. 'cart_num' => 0,
  114. 'is_effective' => 1,
  115. 'noneffective_note' => '已抢光',
  116. 'total_seconds' => $seconds,
  117. 'days' => $days,
  118. 'hours' => $hours,
  119. 'minutes' => $minutes,
  120. 'seconds' => $leftSeconds,
  121. ],[
  122. 'id' => 1,
  123. 'cover_img' => config('alioss.img_host').'/attachment/types/c9b656181bbbc463624ca3803c5be7539f2fd62253f9a-cwVLri.png',
  124. 'name' => '【优质】大白菜',
  125. 'spec' => [
  126. ['key' => '净含量', 'value' => '500g']
  127. ],
  128. 'original_price' => 50.5,
  129. 'price' => 25.25,
  130. 'inventory' => 0,
  131. 'month_sales' => 20,
  132. 'total_sales' => 20,
  133. 'cart_num' => 0,
  134. 'is_effective' => 1,
  135. 'noneffective_note' => '已抢光',
  136. 'total_seconds' => $seconds,
  137. 'days' => $days,
  138. 'hours' => $hours,
  139. 'minutes' => $minutes,
  140. 'seconds' => $leftSeconds,
  141. ],
  142. ]
  143. ],
  144. 'tabs' => [
  145. ['tab' => Tabs::APPLET_INDEX_RECOMMEND, 'title' => '推荐', 'subtitle' => '猜你喜欢', 'badge' => '', 'bg_color' => '#FF0000', 'font_color' => '#FFFFFF'],
  146. ['tab' => Tabs::APPLET_INDEX_NEW, 'title' => '懒族上新', 'subtitle' => '买点不一样', 'badge' => '限时', 'bg_color' => '#FF0000', 'font_color' => '#FFFFFF'],
  147. ['tab' => Tabs::APPLET_INDEX_FRESH, 'title' => '实时鲜货', 'subtitle' => '今天辛苦了', 'badge' => '好新鲜', 'bg_color' => '#FF0000', 'font_color' => '#FFFFFF'],
  148. ['tab' => Tabs::APPLET_INDEX_OFFICE, 'title' => '上班带餐', 'subtitle' => '轻奢快手菜', 'badge' => '不慌', 'bg_color' => '#FF0000', 'font_color' => '#FFFFFF'],
  149. ]
  150. ]);
  151. }
  152. }