mirror of https://github.com/1099438829/apeblog
113 lines
4.3 KiB
PHP
113 lines
4.3 KiB
PHP
<?php
|
|
|
|
namespace app\admin\controller;
|
|
|
|
use app\common\model\AdminRole as rModel;
|
|
use app\common\model\AdminAuth as aModel;
|
|
use app\Request;
|
|
use FormBuilder\Exception\FormBuilderException;
|
|
use app\admin\service\UtilService as Util;
|
|
use FormBuilder\Factory\Elm;
|
|
use app\admin\service\FormBuilderService as Form;
|
|
|
|
class AdminRole extends AuthController
|
|
{
|
|
public function index()
|
|
{
|
|
return $this->fetch();
|
|
}
|
|
|
|
/**
|
|
* 角色列表
|
|
* @param Request $request
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function lst(Request $request)
|
|
{
|
|
return app("json")->layui(rModel::systemPage());
|
|
}
|
|
|
|
/**
|
|
* 添加
|
|
* @param int $pid
|
|
* @return string
|
|
* @throws FormBuilderException
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function add($pid = 0)
|
|
{
|
|
$form = array();
|
|
$form[] = Elm::select('pid','所属上级',(int)$pid)->options(rModel::returnOptions())->filterable(true)->col(18);
|
|
$form[] = Elm::input('name','角色名称')->col(18);
|
|
$form[] = Elm::treeChecked('tree_data','选择权限')->data(aModel::selectAndBuildTree(0,$pid != 0 ? explode(",",rModel::get($pid)['auth']) : ($this->adminId == 1 ? aModel::getIds() : $this->auth)))->col(18);
|
|
$form[] = Elm::number('rank','排序')->col(18);
|
|
$form[] = Elm::radio('status','状态',1)->options([['label'=>'启用','value'=>1],['label'=>'冻结','value'=>0]])->col(18);
|
|
$form = Form::make_post_form($form, url('save')->build());
|
|
$this->assign(compact('form'));
|
|
return $this->fetch("public/form-builder");
|
|
}
|
|
|
|
/**
|
|
* 添加
|
|
* @param int $id
|
|
* @return string
|
|
* @throws FormBuilderException
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function edit($id = 0)
|
|
{
|
|
if (!$id) return app("json")->fail("权限id不能为空");
|
|
$rinfo = rModel::get($id);
|
|
if (!$rinfo) return app("json")->fail("没有该权限");
|
|
$form = array();
|
|
$form[] = Elm::select('pid','所属上级',$rinfo['pid'])->options(rModel::returnOptions())->filterable(true)->col(18);
|
|
$form[] = Elm::input('name','角色名称',$rinfo['name'])->col(18);
|
|
$form[] = Elm::treeChecked('tree_data','选择权限',to_int_array(explode(",",$rinfo['tree_data'])))->data(aModel::selectAndBuildTree(0,$rinfo['pid'] == 0 ? aModel::getIds() : explode(",",rModel::get($rinfo['pid'])['auth'])))->col(18);
|
|
$form[] = Elm::number('rank','排序',$rinfo['rank'])->col(18);
|
|
$form[] = Elm::radio('status','状态',$rinfo['status'])->options([['label'=>'启用','value'=>1],['label'=>'冻结','value'=>0]])->col(18);
|
|
$form = Form::make_post_form($form, url('save',['id'=>$id])->build());
|
|
$this->assign(compact('form'));
|
|
return $this->fetch("public/form-builder");
|
|
}
|
|
|
|
/**
|
|
* 保存
|
|
* @param string $id
|
|
* @return mixed
|
|
*/
|
|
public function save($id="")
|
|
{
|
|
$data = Util::postMore([
|
|
['name',''],
|
|
['pid',0],
|
|
['tree_data',''],
|
|
['rank',0],
|
|
['status',1]
|
|
]);
|
|
if ($data['name'] == "") return app("json")->fail("角色名称不能为空");
|
|
if ($data['pid'] == "") return app("json")->fail("上级归属不能为空");
|
|
if ($data['tree_data'] == "") return app("json")->fail("权限不能为空");
|
|
$data['auth'] = aModel::getIds($data['tree_data']);
|
|
$data['auth'] = implode(",",array_diff(array_unique($data['auth']),[0]));
|
|
$data['tree_data'] = implode(",",$data['tree_data']);
|
|
if ($id=="")
|
|
{
|
|
$data['create_user'] = $this->adminId;
|
|
$data['create_time'] = time();
|
|
$res = rModel::insert($data);
|
|
}else
|
|
{
|
|
$data['update_user'] = $this->adminId;
|
|
$data['update_time'] = time();
|
|
$res = rModel::update($data,['id'=>$id]);
|
|
}
|
|
return $res ? app("json")->success("操作成功",'code') : app("json")->fail("操作失败");
|
|
}
|
|
} |