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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. namespace app\api\logic;
  3. use app\admin\logic\distribution\DistributionSettingLogic;
  4. use app\common\basics\Logic;
  5. use app\common\model\distribution\Distribution;
  6. use app\common\model\MenuDecorate;
  7. use app\common\server\ConfigServer;
  8. use app\common\server\UrlServer;
  9. use app\common\enum\MenuEnum;
  10. class MenuLogic extends Logic
  11. {
  12. public static function getMenu($type, $userId = null)
  13. {
  14. $list = MenuDecorate::where(['decorate_type' => $type, 'del' => 0, 'is_show' => 1])
  15. ->field('name,image,link_type,link_address')
  16. ->order('sort desc')
  17. ->select()
  18. ->toArray();
  19. $menu_list = [];
  20. switch($type) {
  21. case 1:
  22. $type_desc = 'index';
  23. break;
  24. case 2:
  25. $type_desc = 'center';
  26. break;
  27. }
  28. // 获取分销配置
  29. $config = DistributionSettingLogic::getConfig();
  30. $distribution = Distribution::where('user_id', $userId)->findOrEmpty()->toArray();
  31. $isDistribution = 0;
  32. if (!empty($distribution) && $distribution['is_distribution'] == 1) {
  33. $isDistribution = 1;
  34. }
  35. foreach ($list as $key => $menu) {
  36. $menu_content = [];
  37. if(1 == $menu['link_type']){
  38. $menu_content = MenuEnum::getMenu($type_desc, $menu['link_address']);
  39. }
  40. // 分销功能关闭,跳过分销推广菜单
  41. if (!$config['is_open'] && $type == 2 && 201 == $menu['link_address']) {
  42. continue;
  43. }
  44. // 开通分销会员为指定分销 且 当前用户为非分销会员,跳转分销推广菜单
  45. if ($config['apply_condition'] == 3 && !$isDistribution && $type == 2 && 201 == $menu['link_address']) {
  46. continue;
  47. }
  48. //处理图标
  49. $menu_list[] = [
  50. 'name' => $menu['name'],
  51. 'image' => UrlServer::getFileUrl($menu['image']),
  52. 'link' => $menu_content['link'] ?? $menu['link_address'],
  53. 'is_tab' => $menu_content['is_tab'] ?? '',
  54. 'link_type' => $menu_content['link_type'] ?? $menu['link_type'],
  55. ];
  56. }
  57. return $menu_list;
  58. }
  59. }