截流自动化的商城平台
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.

MenuServer.php 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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\admin\server;
  20. use app\common\model\Auth;
  21. use app\common\server\ArrayServer;
  22. class MenuServer
  23. {
  24. /**
  25. * 获取菜单树
  26. * @param $role_id (角色ID)
  27. * @return array
  28. */
  29. public static function getMenuTree($role_id)
  30. {
  31. try {
  32. // 获取所有菜单
  33. $lists = (new Auth())
  34. ->where(['type' => 1, 'del' => 0, 'disable' => 0])
  35. ->order(['sort' => 'desc'])
  36. ->withAttr('uri', function ($value) {
  37. return self::uri($value);
  38. })->select()->toArray();
  39. // 处理返回数据
  40. $none_auth = AuthServer::getRoleNoneAuthIds($role_id);
  41. $lists = self::setRoleMenu($none_auth, $lists);
  42. return ArrayServer::linear_to_tree($lists);
  43. } catch (\Exception $e) {
  44. return [];
  45. }
  46. }
  47. /**
  48. * 设置角色菜单
  49. * @param $none_auth
  50. * @param $lists
  51. * @return mixed
  52. */
  53. private static function setRoleMenu(&$none_auth, $lists)
  54. {
  55. foreach ($lists as $k => $v) {
  56. if (in_array($v['id'], $none_auth)) {
  57. unset($lists[$k]);
  58. }
  59. }
  60. return array_values($lists);
  61. }
  62. /**
  63. * 设置uri
  64. * @param $uri
  65. * @return string
  66. */
  67. private static function uri($uri)
  68. {
  69. return $uri;
  70. // if ($uri) {
  71. // return Route::buildUrl($uri);
  72. // }
  73. // return '';
  74. }
  75. /**
  76. * Notes: 创建菜单
  77. * @param $menu
  78. * @param bool $max
  79. * @author 张无忌(2021/2/3 9:53)
  80. * @return string
  81. */
  82. protected static function createHtml($menu, $max = false)
  83. {
  84. //一级菜单
  85. if ($max) {
  86. $html = '';
  87. $choose_class = 'layui-this';
  88. foreach ($menu as $k => $v) {
  89. $sub = isset($v['sub']) ? $v['sub'] : [];
  90. if ($sub) {
  91. $html .= '<li data-name="set" class="layui-nav-item"><a href="javascript:;" lay-tips="' . $v['name'] . '" lay-direction="2"><i class="layui-icon ' . $v['icon'] . '"></i><cite>' . $v['name'] . '</cite></a><dl class="layui-nav-child">';
  92. $html .= self::createHtml($sub);
  93. $html .= '</li>';
  94. } else {
  95. $html .= '<li data-name="set" class="layui-nav-item ' . $choose_class . '"><a href="javascript:;" lay-href="' . self::uri($v['uri']) . '" lay-tips="' . $v['name'] . '" lay-direction="2"><i class="layui-icon ' . $v['icon'] . '"></i><cite>' . $v['name'] . '</cite></a>';
  96. $html .= '</dl></li>';
  97. }
  98. $choose_class = '';
  99. }
  100. return $html;
  101. }
  102. //二三级菜单无子菜单
  103. $html = '';
  104. foreach ($menu as $k => $v) {
  105. $sub = isset($v['sub']) ? $v['sub'] : [];
  106. if ($sub) {
  107. $html .= '<dd class="layui-nav-itemed"><a href="javascript:;">' . $v['name'] . '<i class="layui-icon ' . $v['icon'] . '"></i></a><dl class="layui-nav-child">';
  108. $html .= self::createHtml($sub);
  109. $html .= '</dl></dd>';
  110. } else {
  111. $html .= '<dd><a href="javascript:;" lay-href="' . self::uri($v['uri']) . '"><i class="layui-icon ' . $v['icon'] . '"></i>' . $v['name'] . '</a></dd>';
  112. }
  113. }
  114. return $html;
  115. }
  116. }