*/ namespace app\admin\controller; use app\model\ApiMenu; use app\util\ReturnCode; use app\util\Tools; class Menu extends Base { /** * 获取菜单列表 * @return array * @throws \think\exception\DbException * @author zhaoxiang */ public function index() { $list = (new ApiMenu)->where([])->order('sort', 'ASC')->select(); $list = Tools::buildArrFromObj($list); $list = formatTree(listToTree($list)); return $this->buildSuccess([ 'list' => $list ], '登录成功'); } /** * 新增菜单 * @return array * @author zhaoxiang */ public function add() { $postData = $this->request->post(); if ($postData['url']) { $postData['url'] = 'admin/' . $postData['url']; } $res = ApiMenu::create($postData); if ($res === false) { return $this->buildFailed(ReturnCode::DB_SAVE_ERROR, '操作失败'); } else { return $this->buildSuccess([]); } } /** * 菜单状态编辑 * @return array * @author zhaoxiang */ public function changeStatus() { $id = $this->request->get('id'); $status = $this->request->get('status'); $res = ApiMenu::update([ 'id' => $id, 'hide' => $status ]); if ($res === false) { return $this->buildFailed(ReturnCode::DB_SAVE_ERROR, '操作失败'); } else { return $this->buildSuccess([]); } } /** * 编辑菜单 * @return array * @author zhaoxiang */ public function edit() { $postData = $this->request->post(); if ($postData['url']) { $postData['url'] = 'admin/' . $postData['url']; } $res = ApiMenu::update($postData); if ($res === false) { return $this->buildFailed(ReturnCode::DB_SAVE_ERROR, '操作失败'); } else { return $this->buildSuccess([]); } } /** * 删除菜单 * @return array * @author zhaoxiang */ public function del() { $id = $this->request->get('id'); if (!$id) { return $this->buildFailed(ReturnCode::EMPTY_PARAMS, '缺少必要参数'); } $childNum = ApiMenu::where(['fid' => $id])->count(); if ($childNum) { return $this->buildFailed(ReturnCode::INVALID, '当前菜单存在子菜单,不可以被删除!'); } else { ApiMenu::destroy($id); return $this->buildSuccess([]); } } }