2023-01-19 02:36:01 +00:00

105 lines
3.6 KiB
PHP

<?php
namespace app\api\controller\party;
use app\common\controller\Api;
use app\admin\model\party\Info as InfoModel;
use app\admin\validate\party\Info as InfoValdate;
use think\App;
use think\facade\Db;
/**
* 党员维护
*/
class Info extends Api{
// protected $noNeedLogin = ['index'];
protected $noNeedLogin = ['*'];
public function __construct(App $app)
{
parent::__construct($app);
$this->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('删除失败');
}
}
}