截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

AdEnum.php 7.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\enum;
  20. class AdEnum{
  21. const MOBILE = 1;
  22. const PC = 2;
  23. /**
  24. * Notes:获取终端
  25. * @param bool $from
  26. * @return array|mixed
  27. * @author: cjhao 2021/4/19 11:32
  28. */
  29. public static function getTerminal($from = true){
  30. $desc = [
  31. self::MOBILE => '移动端商城',
  32. self::PC => 'PC端商城',
  33. ];
  34. if(true === $from){
  35. return $desc;
  36. }
  37. return $desc[$from];
  38. }
  39. /**
  40. * Notes:商城页面路径
  41. * @param bool $type
  42. * @param bool $from
  43. * @return array|mixed
  44. * @author: cjhao 2021/4/20 11:55
  45. */
  46. public static function getLinkPage($type = true,$from = true){
  47. $page = [
  48. self::MOBILE => [
  49. [
  50. 'name' => '商品分类',
  51. 'path' => '/pages/goods_cate/goods_cate',
  52. 'is_tab' => 1,
  53. ],
  54. [
  55. 'name' => '领券中心',
  56. 'path' => '/bundle/pages/get_coupon/get_coupon',
  57. 'is_tab' => 0,
  58. ],
  59. [
  60. 'name' => '个人中心',
  61. 'path' => '/pages/user/user',
  62. 'is_tab' => 1,
  63. ],
  64. [
  65. 'name' => '限时秒杀',
  66. 'path' => '/bundle/pages/goods_seckill/goods_seckill',
  67. 'is_tab' => 0,
  68. ],
  69. [
  70. 'name' => '拼团活动',
  71. 'path' => '/bundle/pages/goods_combination/goods_combination',
  72. 'is_tab' => 0,
  73. ],
  74. [
  75. 'name' => '热销榜单',
  76. 'path' => '/pages/active_list/active_list?type=hot',
  77. 'is_tab' => 0,
  78. ],
  79. [
  80. 'name' => '会员中心',
  81. 'path' => '/bundle/pages/user_vip/user_vip',
  82. 'is_tab' => 0,
  83. ],
  84. [
  85. 'name' => '商城首页',
  86. 'path' => '/pages/index/index',
  87. 'is_tab' => 0,
  88. ],
  89. [
  90. 'name' => '砍价活动',
  91. 'path' => '/bundle/pages/bargain/bargain',
  92. 'is_tab' => 0,
  93. ],
  94. [
  95. 'name' => '新品推荐',
  96. 'path' => '/pages/active_list/active_list?type=new',
  97. 'is_tab' => 0,
  98. ],
  99. [
  100. 'name' => '店铺街',
  101. 'path' => '/pages/shop_street/shop_street',
  102. 'is_tab' => 1,
  103. ],
  104. [
  105. 'name' => '商家入驻',
  106. 'path' => '/bundle/pages/store_settled/store_settled',
  107. 'is_tab' => 0,
  108. ],
  109. [
  110. 'name' => '消息通知',
  111. 'path' => '/pages/message_center/message_center',
  112. 'is_tab' => 0,
  113. ],
  114. [
  115. 'name' => '积分签到',
  116. 'path' => '/bundle/pages/integral_sign/integral_sign',
  117. 'is_tab' => 0,
  118. ],
  119. [
  120. 'name' => '积分商城',
  121. 'path' => '/bundle/pages/integral_mall/integral_mall',
  122. 'is_tab' => 0,
  123. ],
  124. ],
  125. self::PC => [
  126. [
  127. 'name' => '商品分类',
  128. 'path' => '/category',
  129. 'is_tab' => 0,
  130. ],
  131. [
  132. 'name' => '领券中心',
  133. 'path' => '/get_coupons',
  134. 'is_tab' => 0,
  135. ],
  136. [
  137. 'name' => '购物车',
  138. 'path' => '/get_cart',
  139. 'is_tab' => 0,
  140. ],
  141. [
  142. 'name' => '我的订单',
  143. 'path' => '/get_order',
  144. 'is_tab' => 0,
  145. ],
  146. [
  147. 'name' => '商家入驻',
  148. 'path' => '/shop',
  149. 'is_tab' => 0,
  150. ],
  151. [
  152. 'name' => '帮助中心',
  153. 'path' => '/help',
  154. 'is_tab' => 0,
  155. ],
  156. [
  157. 'name' => '限时秒杀',
  158. 'path' => '/seckill',
  159. 'is_tab' => 0,
  160. ],
  161. [
  162. 'name' => '热销榜单',
  163. 'path' => '/goods_list/1',
  164. 'is_tab' => 0,
  165. ],
  166. [
  167. 'name' => '新品推荐',
  168. 'path' => '/goods_list/2',
  169. 'is_tab' => 0,
  170. ],
  171. [
  172. 'name' => '店铺街',
  173. 'path' => '/shop_street',
  174. 'is_tab' => 0,
  175. ],
  176. [
  177. 'name' => '商城资讯',
  178. 'path' => '/news_list',
  179. 'is_tab' => 0,
  180. ],
  181. ],
  182. ];
  183. if(true !== $type){
  184. $page = $page[$type] ?? [];
  185. }
  186. if(true === $from){
  187. return $page;
  188. }
  189. return $page[$from] ?? [];
  190. }
  191. /**
  192. * Notes:获取商品详情路径
  193. * @param bool $from
  194. * @return array|mixed|string
  195. * @author: cjhao 2021/4/20 14:06
  196. */
  197. public static function getGoodsPath($from = true){
  198. $desc = [
  199. self::MOBILE => '/pages/goods_details/goods_details',
  200. self::PC => '/goods_details',
  201. ];
  202. if(true === $from){
  203. return $desc;
  204. }
  205. return $desc[$from] ?? '';
  206. }
  207. }