model = new InfoModel(); $this->validate = new InfoValdate(); } public function index($search='',$page=1,$type=0,$branch_id=0) { $where=[ ['status','=', 1] ]; if ($search!=''){ $userall=Db::name('user')->where('nickname','like', $search . '%')->field('id')->select(); if ($userall){ $ids=[]; foreach ($userall as $user){ $ids[]=$user['id']; } $where[]=['user_id','in',implode(',',$ids)]; }else{ return $this->error('查询内容不存在'); } } if ($type>0){ $where[]=['is_pay','=',$type]; } if ($branch_id!=0){ $where[]=['party_branch','=',$branch_id]; } $select=Db::name('szxc_party_info')->where($where) ->withAttr('user_info',function ($value, $data){ $user = Db::name('user')->where('id',$data['user_id'])->field('nickname,avatar,mobile')->find(); $usermsg = Db::name('szxc_information_usermsg')->where('user_id',$data['user_id'])->field('idcard')->find(); $user['idcard'] =$usermsg?$usermsg['idcard']:''; return $user; }) ->withAttr('branch',function ($value, $data){ $find = Db::name('szxc_party_branch')->where('id',$data['party_branch'])->field('company')->find(); return $find['company']; }) ->page($page)->limit(20)->select(); return $this->success('ok',$select); } public function add($user_id){ $user = Db::name('user')->where('id',$user_id)->field('nickname,avatar,mobile,gender')->find(); $usermsg = Db::name('szxc_information_usermsg')->where('user_id',$user_id)->field('idcard,age,political_outlook,marriage')->find(); return $this->success('ok',['userinfo'=>array_merge($user,$usermsg)]); } public function post(){ $input=$this->request->post();; $res=$this->validate->check($input); if (!$res){ return $this->error($this->validate->getError()); } $res=$this->model->save($input); if ($res){ return $this->success('添加成功'); }else{ return $this->error('添加失败'); } } public function edit($id){ $find=$this->model->where('id',$id)->find(); return $this->success('ok',$find); } public function put($id){ $input=$this->request->post();; $res=$this->validate->check($input); if (!$res){ return $this->error($this->validate->getError()); } $input['user_id'] = 1; $res=$this->model->where('id',$id)->update($input); if ($res){ return $this->success('修改成功'); }else{ return $this->error('修改失败'); } } public function delete($id){ $res=$this->model->where('id',$id)->update(['status'=>0]); if ($res){ return $this->success('删除成功'); }else{ return $this->error('删除失败'); } } }