['except' => [] ] ]; public function __construct(App $app) { parent::__construct($app); $this->model = Db::table('fa_szxc_party_vote'); $this->validate = new VoteValdate(); } public function index($search='',$page=1,$type=0,$screen=1) { $where=[ ['status','=', 1] ]; //根据个人村id进行查询 if (JWT_UID) { $find = Db::table('fa_szxc_information_useraddress')->where('user_id', JWT_UID)->find(); if ($find) { if ($find['auth_range']==1){ $where[] = ['village', '=', $find['village_id']]; }elseif ($find['auth_range']==2){ $where[] = ['township', '=', $find['street_id']]; }elseif ($find['auth_range']==3){ $where[] = ['county', '=', $find['area_id']]; } } } $count=Db::table('fa_szxc_party_vote')->where($where)->count(); $month_count=Db::table('fa_szxc_party_vote')->where($where)->whereMonth('start_time')->count(); if ($search!=''){ $where[]=['title','like',$search.'%']; } if ($screen==2){ $where[]=['end_time','>=',date('Y-m-d')]; } if ($screen==3){ $where[]=['end_time','<=',date('Y-m-d')]; } $select=Db::table('fa_szxc_party_vote')->where($where)->page($page)->limit(20) ->withAttr('percentage',function ($data,$value){ $count=$value['agree']+$value['opposition']+$value['other']; $find['agree_percentage']=0; $find['opposition_percentage']=0; if ($count!=0){ if ($value['agree']!=0){ $find['agree_percentage']=round(($value['agree']/$count)*100); } if ($value['opposition']!=0){ $find['opposition_percentage']=round(($value['opposition']/$count)*100); } } return $find; }) ->withAttr('nickname',function($value,$data){ $find=Db::table('fa_user')->where('id',$data['user_id'])->field('nickname')->find(); return $find['nickname']; })->order('id DESC') ->field('id,title,image,user_id,view,start_time,end_time,agree,opposition,other')->select(); return $this->apiSuccess('ok',['list'=>$select,'count'=>['count'=>$count,'month_count'=>$month_count]]); } public function details($id) { $find=$this->model->where('id',$id)->find()->toArray(); if ($find){ // 增加阅读数 // $ip = 'party_vote_article-details-'.$this->request->ip().'-'.$id; // $ip_cache = Cache::get($ip); // if(empty($ip_cache)){ // Cache::set($ip,$id,3600*24); $map[] =['id','=', $id]; Db::table('fa_szxc_party_vote')->where($map)->inc('view','1')->update(); // } $count=$find['agree']+$find['opposition']+$find['other']; $find['agree_percentage']=0; $find['opposition_percentage']=0; if ($count!=0){ if ($find['agree']!=0){ $find['agree_percentage']=round(($find['agree']/$count)*100); } if ($find['opposition']!=0){ $find['opposition_percentage']=round(($find['opposition']/$count)*100); } } } return $this->apiSuccess('ok',$find); } public function add(){ } public function post(){ $input=get_params(); $res=$this->validate->check($input); if (!$res){ return $this->apiError($this->validate->getError()); } $useraddress = Db::table('fa_szxc_information_useraddress')->where('user_id', JWT_UID)->where('status', 1)->find(); if ($useraddress) { $input['county'] = $useraddress['area_id']; $input['township'] = $useraddress['street_id']; $input['village'] = $useraddress['village_id']; } $input['user_id']=JWT_UID; $input['add_time']=date('Y-m-d H:i:s'); $res=$this->model->save($input); if ($res){ return $this->apiSuccess('添加成功'); }else{ return $this->apiError('添加失败'); } } public function edit($id){ $find=$this->model->where('id',$id)->find(); return $this->apiSuccess('ok',$find); } public function put($id){ $input=get_params(); $res=$this->validate->check($input); if (!$res){ return $this->apiError($this->validate->getError()); } $useraddress = Db::table('fa_szxc_information_useraddress')->where('user_id', JWT_UID)->where('status', 1)->find(); if ($useraddress) { $input['county'] = $useraddress['area_id']; $input['township'] = $useraddress['street_id']; $input['village'] = $useraddress['village_id']; } $res=$this->model->where('id',$id)->update($input); if ($res){ return $this->apiSuccess('修改成功'); }else{ return $this->apiError('修改失败'); } } public function delete($id){ $res=$this->model->where('id',$id)->update(['status'=>0]); if ($res){ return $this->apiSuccess('删除成功'); }else{ return $this->apiError('删除失败'); } } }