| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php
- namespace app\admin\controller\user;
- use app\common\controller\Backend;
- /**
- * 会员组管理
- *
- * @icon fa fa-users
- */
- class Group extends Backend
- {
- /**
- * @var \app\admin\model\UserGroup
- */
- protected $model = null;
- public function _initialize()
- {
- parent::_initialize();
- $this->model = model('User');
- $this->view->assign("statusList", $this->model->getStatusList());
- }
- /**
- * 查看
- */
- public function index()
- {
- //设置过滤方法
- $this->request->filter(['strip_tags', 'trim']);
- if ($this->request->isAjax()) {
- //如果发送的来源是Selectpage,则转发到Selectpage
- if ($this->request->request('keyField')) {
- return $this->selectpage();
- }
- list($where, $sort, $order, $offset, $limit) = $this->buildparams();
- $list = $this->model
- //->with('group')
- ->where($where)
- ->order($sort, $order)
- ->paginate($limit);
- // foreach ($list as $k => $v) {
- // $v->avatar = $v->avatar ? cdnurl($v->avatar, true) : letter_avatar($v->nickname);
- // $v->hidden(['password', 'salt']);
- // }
- $result = array("total" => $list->total(), "rows" => $list->items());
- return json($result);
- }
- return $this->view->fetch();
- }
-
- public function add()
- {
- if ($this->request->isPost()) {
- $this->token();
- }
- $nodeList = \app\admin\model\UserRule::getTreeList();
- $this->assign("nodeList", $nodeList);
- return parent::add();
- }
- public function edit($ids = null)
- {
- if ($this->request->isPost()) {
- $this->token();
- }
- $row = $this->model->get($ids);
- if (!$row) {
- $this->error(__('No Results were found'));
- }
- $rules = explode(',', $row['rules']);
- $nodeList = \app\admin\model\UserRule::getTreeList($rules);
- $this->assign("nodeList", $nodeList);
- return parent::edit($ids);
- }
- }
|