|
@@ -4,6 +4,8 @@ namespace app\admin\controller;
|
|
|
|
|
|
use app\BaseController;
|
|
|
use app\admin\logic\ActionLogic;
|
|
|
+use app\model\ActionModel;
|
|
|
+use app\model\AdminMenuModel;
|
|
|
use app\model\CommonModel;
|
|
|
use think\exception\ValidateException;
|
|
|
use think\facade\Config;
|
|
@@ -13,7 +15,7 @@ use think\facade\Validate;
|
|
|
class Action extends BaseController
|
|
|
{
|
|
|
//获取权限列表
|
|
|
- public function List()
|
|
|
+ public function list()
|
|
|
{
|
|
|
$menuid = $this->request->post('menuid', 0);
|
|
|
|
|
@@ -21,7 +23,7 @@ class Action extends BaseController
|
|
|
}
|
|
|
|
|
|
//添加权限
|
|
|
- public function Add()
|
|
|
+ public function add()
|
|
|
{
|
|
|
$param = $this->request->only(['menuid', 'action_code', 'status' => CommonModel::$status_normal], 'post');
|
|
|
|
|
@@ -41,7 +43,7 @@ class Action extends BaseController
|
|
|
// }
|
|
|
|
|
|
//编辑权限
|
|
|
- public function Edit()
|
|
|
+ public function edit()
|
|
|
{
|
|
|
$param = $this->request->only(['id', 'action_code'], 'post');
|
|
|
|
|
@@ -56,7 +58,7 @@ class Action extends BaseController
|
|
|
}
|
|
|
|
|
|
//删除权限
|
|
|
- public function Delete()
|
|
|
+ public function delete()
|
|
|
{
|
|
|
$id = $this->request->post('id/d', 0);
|
|
|
|
|
@@ -64,7 +66,7 @@ class Action extends BaseController
|
|
|
}
|
|
|
|
|
|
//启禁用权限
|
|
|
- public function Status()
|
|
|
+ public function status()
|
|
|
{
|
|
|
$param = $this->request->only(['id', 'status'], 'post');
|
|
|
|
|
@@ -75,4 +77,34 @@ class Action extends BaseController
|
|
|
return ActionLogic::Status($param);
|
|
|
}
|
|
|
|
|
|
+ //获取所有菜单下的所有按钮
|
|
|
+ public function index()
|
|
|
+ {
|
|
|
+ $list = AdminMenuModel::field('id,menu_name,menu_type,menu_img,menu_route,menu_url,status,weight,addtime,is_private private')
|
|
|
+ ->where(['pid' => 0, 'is_show' => AdminMenuModel::$show])
|
|
|
+ ->append(['child'])
|
|
|
+ ->withAttr('child', function ($val, $data) {
|
|
|
+ return AdminMenuModel::field('id,menu_name,menu_type,menu_img,menu_route,menu_url,status,weight,addtime,is_private private,pid')
|
|
|
+ ->where(['pid' => $data['id'], 'is_show' => AdminMenuModel::$show])
|
|
|
+ ->append(['action'])
|
|
|
+ ->withAttr('action', function ($v, $d) {
|
|
|
+ return ActionModel::alias('a')
|
|
|
+ ->leftJoin('action_list l', 'a.action_code=l.action_code')
|
|
|
+ ->field('a.*,action_name')
|
|
|
+ ->where(['a.menuid' => $d['id'], 'a.status' => CommonModel::$status_normal])
|
|
|
+ ->select()
|
|
|
+ ->toArray();
|
|
|
+ })
|
|
|
+ ->order('weight', 'desc')
|
|
|
+ ->select()
|
|
|
+ ->toArray();
|
|
|
+ })
|
|
|
+ ->order('weight', 'desc')
|
|
|
+ ->select()
|
|
|
+ ->toArray();
|
|
|
+
|
|
|
+ return json_show(CommonModel::$success, '获取成功', $list);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|