From 138e50c86c5ff5046ee30108495a158b6db7f82f Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Thu, 9 Nov 2023 14:31:24 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=8F=9C=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/auth/MenuController.php | 12 +++++++++ app/adminapi/logic/auth/MenuLogic.php | 26 ++++++++++++------- 2 files changed, 28 insertions(+), 10 deletions(-) diff --git a/app/adminapi/controller/auth/MenuController.php b/app/adminapi/controller/auth/MenuController.php index 831039a7f..afe898776 100755 --- a/app/adminapi/controller/auth/MenuController.php +++ b/app/adminapi/controller/auth/MenuController.php @@ -53,6 +53,18 @@ class MenuController extends BaseAdminController return $this->dataLists(new MenuLists()); } + /** + * 根据id获取模块菜单 + */ + public function model_menu_lists() + { + $id=$this->request->param('id',0); + if($id==0){ + return $this->fail('缺少参数'); + } + $list=MenuLogic::getModelList($id); + return $this->success('操作成功', $list); + } /** * @notes 菜单详情 diff --git a/app/adminapi/logic/auth/MenuLogic.php b/app/adminapi/logic/auth/MenuLogic.php index 1c7cc4173..5472d9730 100755 --- a/app/adminapi/logic/auth/MenuLogic.php +++ b/app/adminapi/logic/auth/MenuLogic.php @@ -63,16 +63,22 @@ class MenuLogic extends BaseLogic return linear_to_tree($menu, 'children'); } - // public static function getPidMyList($pid){ - // $where = []; - // $where[] = ['type', 'in', ['M', 'C']]; - // $where[] = ['is_disable', '=', 0]; - // $where[] = ['pid', '=', $pid]; - // $menu = SystemMenu::where($where) - // ->order(['sort' => 'desc', 'id' => 'asc']) - // ->select(); - - // } + public static function getModelList($id){ + $where = []; + $where[] = ['is_disable', '=', 0]; + $where[] = ['id', '=', $id]; + $model_name = SystemMenu::where($where)->value('paths'); + if($model_name){ + unset($where[1]); + $where[] = ['type', 'in', ['M', 'C']]; + $where[] = ['model_name', '=', $model_name]; + $menu = SystemMenu::where($where) + ->order(['sort' => 'desc', 'id' => 'asc']) + ->select(); + return linear_to_tree($menu, 'children','id','pid',$id); + } + return []; + } /** * @notes 添加菜单