mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
110 lines
2.7 KiB
PHP
110 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* 目录管理
|
|
* @since 2018-01-16
|
|
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
|
*/
|
|
|
|
namespace app\admin\controller;
|
|
|
|
use app\model\AdminMenu;
|
|
use app\util\ReturnCode;
|
|
use app\util\Tools;
|
|
|
|
class Menu extends Base {
|
|
|
|
/**
|
|
* 获取菜单列表
|
|
* @return array
|
|
* @throws \think\exception\DbException
|
|
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
|
*/
|
|
public function index() {
|
|
$keywords = $this->request->get('keywords', '');
|
|
$obj = new AdminMenu();
|
|
if ($keywords) {
|
|
$obj = $obj->whereLike('title', "%{$keywords}%");
|
|
}
|
|
$obj = $obj->order('sort', 'ASC')->select();
|
|
$list = Tools::buildArrFromObj($obj);
|
|
if (!$keywords) {
|
|
$list = Tools::listToTree($list);
|
|
}
|
|
|
|
return $this->buildSuccess([
|
|
'list' => $list
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* 新增菜单
|
|
* @return array
|
|
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
|
*/
|
|
public function add() {
|
|
$postData = $this->request->post();
|
|
if ($postData['url']) {
|
|
$postData['url'] = 'admin/' . $postData['url'];
|
|
}
|
|
$res = AdminMenu::create($postData);
|
|
if ($res === false) {
|
|
return $this->buildFailed(ReturnCode::DB_SAVE_ERROR);
|
|
} else {
|
|
return $this->buildSuccess();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 菜单状态编辑
|
|
* @return array
|
|
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
|
*/
|
|
public function changeStatus() {
|
|
$id = $this->request->get('id');
|
|
$status = $this->request->get('status');
|
|
$res = AdminMenu::update([
|
|
'id' => $id,
|
|
'show' => $status
|
|
]);
|
|
if ($res === false) {
|
|
return $this->buildFailed(ReturnCode::DB_SAVE_ERROR);
|
|
}
|
|
|
|
return $this->buildSuccess();
|
|
}
|
|
|
|
/**
|
|
* 编辑菜单
|
|
* @return array
|
|
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
|
*/
|
|
public function edit() {
|
|
$postData = $this->request->post();
|
|
if ($postData['url']) {
|
|
$postData['url'] = 'admin/' . $postData['url'];
|
|
}
|
|
$res = AdminMenu::update($postData);
|
|
if ($res === false) {
|
|
return $this->buildFailed(ReturnCode::DB_SAVE_ERROR);
|
|
}
|
|
|
|
return $this->buildSuccess();
|
|
}
|
|
|
|
/**
|
|
* 删除菜单
|
|
* @return array
|
|
* @throws \Exception
|
|
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
|
*/
|
|
public function del() {
|
|
$id = $this->request->get('id');
|
|
if (!$id) {
|
|
return $this->buildFailed(ReturnCode::EMPTY_PARAMS, '缺少必要参数');
|
|
}
|
|
(new AdminMenu())->whereIn('id', $id)->delete();
|
|
|
|
return $this->buildSuccess();
|
|
}
|
|
}
|