model = model('User'); } /** * 查看 */ 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','category']) ->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(); } return parent::add(); } /** * 编辑 */ public function edit($ids = null) { if ($this->request->isPost()) { $this->token(); } $row = $this->model->get($ids); $this->modelValidate = true; if (!$row) { $this->error(__('No Results were found')); } $this->view->assign('groupList', build_select('row[group_id]', \app\admin\model\UserGroup::column('id,name'), $row['group_id'], ['class' => 'form-control selectpicker'])); return parent::edit($ids); } /** * 删除 */ public function del($ids = "") { if (!$this->request->isPost()) { $this->error(__("Invalid parameters")); } $ids = $ids ? $ids : $this->request->post("ids"); $row = $this->model->get($ids); $this->modelValidate = true; if (!$row) { $this->error(__('No Results were found')); } Auth::instance()->delete($row['id']); $this->success(); } /** * 推荐切换 */ public function change($ids = '') { if (!$this->request->isPost()) { $this->error(__("Invalid parameters")); } $ids = $ids ? $ids : $this->request->post("ids"); $row = $this->model->get($ids); if (!$row) { $this->error(__('No Results were found')); } if($row->is_recommend){ $is_recommend = ['is_recommend'=>0]; $row->save(['recommend_weight'=>'']); }else{ $is_recommend = ['is_recommend'=>1]; $max = \app\common\model\User::max('recommend_weight'); if($max){ $row->save(['recommend_weight'=>$max+1]); }else{ $row->save(['recommend_weight'=>1]); } } $this->model->update($is_recommend,['id'=>$ids]); $this->success("模拟切换成功"); } /** * 封禁 */ public function hidden($ids = '') { if (!$this->request->isPost()) { $this->error(__("Invalid parameters")); } $ids = $ids ? $ids : $this->request->post("ids"); $row = $this->model->get($ids); if (!$row) { $this->error(__('No Results were found')); } $row->status = 'hidden'; $row->save($row->status); $this->success("封禁成功"); } /** * 解封 */ public function normal($ids = '') { if (!$this->request->isPost()) { $this->error(__("Invalid parameters")); } $ids = $ids ? $ids : $this->request->post("ids"); $row = $this->model->get($ids); if (!$row) { $this->error(__('No Results were found')); } $row->status = 'normal'; $row->save($row->status); $this->success("解封成功"); } /** * 详情 */ public function detail($ids) { $row = $this->model->get($ids); if (!$row) { $this->error(__('No Results were found')); } if ($this->request->isAjax()) { $this->success("Ajax请求成功", null, ['id' => $ids]); } $detail = $row->toArray(); $detail['gender'] = $detail['gender'] == 0?'女':'男'; $detail['region_province'] = Area::where('id',$detail['region_province'])->value('name'); $detail['region_city'] = Area::where('id',$detail['region_city'])->value('name'); $detail['region_area'] = Area::where('id',$detail['region_area'])->value('name'); $detail['province'] = Area::where('id',$detail['province'])->value('name'); $detail['city'] = Area::where('id',$detail['city'])->value('name'); $detail['area'] = Area::where('id',$detail['area'])->value('name'); if($detail['education']){ $category = Category::where(['id'=>$detail['education']])->value('name'); if($category)$detail['education']=$category; } // print_r(Category::where(['id'=>$detail['education']])->value('name')); // exit(); $detail['user_object'] = UserObject::get(['uid'=>$detail['id']])?UserObject::get(['uid'=>$detail['id']])->toArray():''; $this->view->assign("row",$detail); return $this->view->fetch(); } // /** // * 详情 // */ // public function detail($ids) // { // $row = $this->model->get(['id' => $ids]); // if (!$row) { // $this->error(__('No Results were found')); // } // if ($this->request->isAjax()) { // $this->success("Ajax请求成功", null, ['id' => $ids]); // } // $this->view->assign("row", $row->toArray()); // return $this->view->fetch(); // } }