123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <?php
- namespace app\admin\controller\auth;
- use app\common\controller\Backend;
- use fast\Tree;
- /**
- * 规则管理
- *
- * @icon fa fa-list
- * @remark 规则通常对应一个控制器的方法,同时左侧的菜单栏数据也从规则中体现,通常建议通过控制台进行生成规则节点
- */
- class Rule extends Backend
- {
- protected $model = null;
- protected $rulelist = [];
- public function _initialize()
- {
- parent::_initialize();
- $this->model = model('AuthRule');
- // 必须将结果集转换为数组
- Tree::instance()->init(collection($this->model->order('weigh', 'desc')->select())->toArray());
- $this->rulelist = Tree::instance()->getTreeList(Tree::instance()->getTreeArray(0), 'title');
- $ruledata = [];
- foreach ($this->rulelist as $k => $v)
- {
- $ruledata[$v['id']] = $v['title'];
- }
- $this->view->assign('ruledata', $ruledata);
- }
- /**
- * 查看
- */
- public function index()
- {
- if ($this->request->isAjax())
- {
- $list = $this->rulelist;
- $total = count($this->rulelist);
- $result = array("total" => $total, "rows" => $list);
- return json($result);
- }
- return $this->view->fetch();
- }
- /**
- * 添加
- */
- public function add()
- {
- if ($this->request->isPost())
- {
- $this->code = -1;
- $params = $this->request->post("row/a");
- if ($params)
- {
- $this->model->create($params);
- $this->code = 1;
- }
- return;
- }
- return $this->view->fetch();
- }
- /**
- * 编辑
- */
- public function edit($ids = NULL)
- {
- $row = $this->model->get(['id' => $ids]);
- if (!$row)
- $this->error(__('No Results were found'));
- if ($this->request->isPost())
- {
- $this->code = -1;
- $params = $this->request->post("row/a");
- if ($params)
- {
- $row->save($params);
- $this->code = 1;
- }
- return;
- }
- $this->view->assign("row", $row);
- return $this->view->fetch();
- }
- /**
- * 删除
- */
- public function del($ids = "")
- {
- $this->code = -1;
- if ($ids)
- {
- $count = $this->model->where('id', 'in', $ids)->delete();
- if ($count)
- {
- $this->code = 1;
- }
- }
- return;
- }
- }
|