model = model('OrderLog'); $this->childrenAdminIds = $this->auth->getChildrenAdminIds(true); $this->childrenGroupIds = $this->auth->getChildrenGroupIds(true); // $groupName = AuthGroup::where('id', 'in', $this->childrenGroupIds) // ->column('id,name'); // $this->view->assign('groupdata', $groupName); } /** * 查看 */ public function index() { // halt(); //当前是否为关联查询 $this->relationSearch = true; //设置过滤方法 $this->request->filter(['strip_tags', 'trim']); if ($this->request->isAjax()) { list($where, $sort, $order, $offset, $limit) = $this->buildparams(); $list = $this->model ->where($where) ->with(['order']) // ->where('admin_id', 'in', $this->childrenAdminIds) ->order($sort, $order) ->paginate($limit); foreach ($list as $row) { $row->visible(['id','username','updatetime','field','type']); $row->visible(['order']); $row->getRelation('order')->visible(['no']); } $result = array("total" => $list->total(), "rows" => $list->items()); return json($result); } return $this->view->fetch(); } /** * 详情 */ public function detail($ids) { $row = $this->model->get(['id' => $ids]); if (!$row) { $this->error(__('No Results were found')); } if (!$row['admin_id'] || !in_array($row['admin_id'], $this->childrenAdminIds)) { $this->error(__('You have no permission')); } $this->view->assign("row", $row->toArray()); return $this->view->fetch(); } /** * 添加 * @internal */ public function add() { $this->error(); } /** * 编辑 * @internal */ public function edit($ids = null) { $this->error(); } /** * 删除 */ public function del($ids = "") { if (!$this->request->isPost()) { $this->error(__("Invalid parameters")); } $ids = $ids ? $ids : $this->request->post("ids"); if ($ids) { $adminList = $this->model->where('id', 'in', $ids)->where('admin_id', 'in', $this->childrenAdminIds)->select(); if ($adminList) { $deleteIds = []; foreach ($adminList as $k => $v) { $deleteIds[] = $v->id; } if ($deleteIds) { $this->model->destroy($deleteIds); $this->success(); } } } $this->error(); } /** * 批量更新 * @internal */ public function multi($ids = "") { // 管理员禁止批量操作 $this->error(); } public function selectpage() { return parent::selectpage(); } }