134 lines
4.6 KiB
PHP
134 lines
4.6 KiB
PHP
<?php
|
|
namespace app\api\controller\party;
|
|
|
|
use app\admin\validate\party\VoteComment as VoteCommentValdate;
|
|
use think\App;
|
|
use app\api\BaseController;
|
|
use app\api\middleware\Auth;
|
|
use think\facade\Db;
|
|
|
|
/**
|
|
* 党员维护
|
|
*/
|
|
class VoteComment extends BaseController{
|
|
/**
|
|
* 控制器中间件 [不需要鉴权]
|
|
* @var array
|
|
*/
|
|
protected $middleware = [
|
|
Auth::class => ['except' => [] ]
|
|
];
|
|
|
|
public function __construct(App $app)
|
|
{
|
|
parent::__construct($app);
|
|
$this->model = Db::table('fa_szxc_party_vote_comment');
|
|
$this->validate = new VoteCommentValdate();
|
|
}
|
|
public function index($search='',$vote_id=1,$page=1) {
|
|
$select=Db::table('fa_szxc_party_vote_comment')
|
|
->withAttr('user_info',function ($data,$value){
|
|
$find=Db::connect('shop')->table('eb_user')->where('uid',$value['user_id'])->field('nickname,avatar')->find();
|
|
$data = $find;
|
|
$data['user_type_info']='党员';
|
|
return $data;
|
|
})
|
|
->withAttr('reply',function ($data,$value){
|
|
if ($value['reply']==null){
|
|
$find='无';
|
|
}else{
|
|
$find=$value['reply'];
|
|
}
|
|
return $find;
|
|
})
|
|
->where('vote_id', $vote_id)->where('status', 1)->where('type',1)->page($page)->limit(20)->select();
|
|
$select_type2=Db::table('fa_szxc_party_vote_comment')
|
|
->withAttr('user_info',function ($data,$value){
|
|
$find=Db::connect('shop')->table('eb_user')->where('uid',$value['user_id'])->field('nickname,avatar')->find();
|
|
$data = $find;
|
|
$data['user_type_info']='党员';
|
|
return $data;
|
|
})
|
|
->withAttr('reply',function ($data,$value){
|
|
if ($value['reply']==null){
|
|
$find='无';
|
|
}else{
|
|
$find=$value['reply'];
|
|
}
|
|
return $find;
|
|
})
|
|
->where('vote_id', $vote_id)->where('status', 1)->where('type',2)->page($page)->limit(20)->select();
|
|
$select_type3=Db::table('fa_szxc_party_vote_comment')
|
|
->withAttr('user_info',function ($data,$value){
|
|
$find=Db::connect('shop')->table('eb_user')->where('uid',$value['user_id'])->field('nickname,avatar')->find();
|
|
$data = $find;
|
|
$data['user_type_info']='党员';
|
|
return $data;
|
|
})
|
|
->withAttr('reply',function ($data,$value){
|
|
if ($value['reply']==null){
|
|
$find='无';
|
|
}else{
|
|
$find=$value['reply'];
|
|
}
|
|
return $find;
|
|
})
|
|
->where('vote_id', $vote_id)->where('status', 1)->where('type',3)->page($page)->limit(20)->select();
|
|
return $this->apiSuccess('ok',['list1'=>$select,'list2'=>$select_type2,'list3'=>$select_type3]);
|
|
}
|
|
|
|
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', $this->request->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']=1;
|
|
$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->with('user')->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());
|
|
}
|
|
$input['user_id'] = 1;
|
|
$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('删除失败');
|
|
}
|
|
}
|
|
}
|