123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
- namespace app\admin\controller\agent;
- use app\admin\model\AuthGroup;
- use app\admin\model\AuthGroupAccess;
- use app\common\controller\Backend;
- use fast\Random;
- use fast\Tree;
- use think\Db;
- use think\Validate;
- /**
- * 结算管理
- *
- * @icon fa fa-users
- * @remark 一个管理员可以有多个角色组,左侧的菜单根据管理员所拥有的权限进行生成
- */
- class Admin extends Backend
- {
- /**
- * @var \app\admin\model\Admin
- */
- protected $model = null;
- protected $selectpageFields = 'id,username,nickname,avatar';
- protected $searchFields = 'id,username,nickname';
- protected $childrenGroupIds = [];
- protected $childrenAdminIds = [];
- public function _initialize()
- {
- parent::_initialize();
- $this->model = model('Admin');
- $this->childrenAdminIds = $this->auth->getChildrenAdminIds($this->auth->isSuperAdmin());
- $this->childrenGroupIds = $this->auth->getChildrenGroupIds($this->auth->isSuperAdmin());
- $groupList = collection(AuthGroup::where('id', 'in', $this->childrenGroupIds)->select())->toArray();
- Tree::instance()->init($groupList);
- $groupdata = [];
- if ($this->auth->isSuperAdmin()) {
- $result = Tree::instance()->getTreeList(Tree::instance()->getTreeArray(0));
- foreach ($result as $k => $v) {
- $groupdata[$v['id']] = $v['name'];
- }
- } else {
- $result = [];
- $groups = $this->auth->getGroups();
- foreach ($groups as $m => $n) {
- $childlist = Tree::instance()->getTreeList(Tree::instance()->getTreeArray($n['id']));
- $temp = [];
- foreach ($childlist as $k => $v) {
- $temp[$v['id']] = $v['name'];
- }
- $result[__($n['name'])] = $temp;
- }
- $groupdata = $result;
- }
- $this->view->assign('groupdata', $groupdata);
- $this->assignconfig("admin", ['id' => $this->auth->id]);
- }
- /**
- * 批量更新
- * @internal
- */
- public function multi($ids = "")
- {
- // 管理员禁止批量操作
- $this->error();
- }
- /**
- * 下拉搜索
- */
- public function selectpage()
- {
- $this->dataLimit = 'auth';
- $this->dataLimitField = 'id';
- return parent::selectpage();
- }
- }
|