截流自动化的商城平台
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?php
  2. namespace app\common\model;
  3. use app\common\basics\Models;
  4. class Ad extends Models
  5. {
  6. const mobile = 1;
  7. const pc = 2;
  8. public static function getAdTypeDesc($from = true){
  9. $desc = [
  10. self::mobile => '移动端商城',
  11. self::pc => 'pc端商城',
  12. ];
  13. if($from === true){
  14. return $desc;
  15. }
  16. return $desc[$from] ?? '';
  17. }
  18. public static function getLinkPage($type = true,$from = true){
  19. $page = [
  20. self::mobile => [
  21. [
  22. 'name' => '商品分类',
  23. 'path' => '/pages/goods_cate/goods_cate',
  24. 'is_tab' => 1,
  25. ],
  26. [
  27. 'name' => '领券中心',
  28. 'path' => '/bundle/pages/get_coupon/get_coupon',
  29. 'is_tab' => 0,
  30. ],
  31. [
  32. 'name' => '个人中心',
  33. 'path' => '/pages/user/user',
  34. 'is_tab' => 1,
  35. ],
  36. ],
  37. self::pc => [
  38. [
  39. 'name' => '商品分类',
  40. 'path' => '/category',
  41. 'is_tab' => 0,
  42. ],
  43. [
  44. 'name' => '领券中心',
  45. 'path' => '/get_coupons',
  46. 'is_tab' => 0,
  47. ],
  48. [
  49. 'name' => '购物车',
  50. 'path' => '/shop_cart',
  51. 'is_tab' => 0,
  52. ],
  53. [
  54. 'name' => '我的订单',
  55. 'path' => '/user/order',
  56. 'is_tab' => 0,
  57. ],
  58. [
  59. 'name' => '商家入驻',
  60. 'path' => '/store_settled',
  61. 'is_tab' => 0,
  62. ],
  63. [
  64. 'name' => '帮助中心',
  65. 'path' => '/help_center',
  66. 'is_tab' => 0,
  67. ],
  68. ],
  69. ];
  70. if(true !== $type){
  71. $page = $page[$type] ?? [];
  72. }
  73. if(true === $from){
  74. return $page;
  75. }
  76. return $page[$from] ?? [];
  77. }
  78. public static function getGoodsPath($from = true){
  79. $desc = [
  80. self::mobile => '/pages/goods_details/goods_details',
  81. self::pc => '/goods_details',
  82. ];
  83. if(true === $from){
  84. return $desc;
  85. }
  86. return $desc[$from] ?? '';
  87. }
  88. }