111 lines
3.7 KiB
PHP
111 lines
3.7 KiB
PHP
<?php
|
|
namespace app\api\controller\party;
|
|
|
|
use app\admin\validate\party\Info as InfoValdate;
|
|
use think\App;
|
|
use app\api\BaseController;
|
|
use app\api\middleware\Auth;
|
|
use think\facade\Db;
|
|
|
|
/**
|
|
* 党员维护
|
|
*/
|
|
class Info extends BaseController{
|
|
/**
|
|
* 控制器中间件 [不需要鉴权]
|
|
* @var array
|
|
*/
|
|
protected $middleware = [
|
|
Auth::class => ['except' => [] ]
|
|
];
|
|
public function __construct(App $app)
|
|
{
|
|
parent::__construct($app);
|
|
$this->model = Db::table('fa_szxc_party_info');
|
|
$this->validate = new InfoValdate();
|
|
}
|
|
public function index($search='',$page=1,$type=0,$branch_id=0) {
|
|
$where=[
|
|
['status','=', 1]
|
|
];
|
|
if ($search!=''){
|
|
$userall=Db::connect('shop')->table('eb_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->apiError('查询内容不存在');
|
|
}
|
|
}
|
|
if ($type>0){
|
|
$where[]=['is_pay','=',$type];
|
|
}
|
|
if ($branch_id!=0){
|
|
$where[]=['party_branch','=',$branch_id];
|
|
}
|
|
$select=Db::table('fa_szxc_party_info')->where($where)
|
|
->withAttr('user_info',function ($value, $data){
|
|
$user = Db::connect('shop')->table('eb_user')->where('uid',$data['user_id'])->field('nickname,avatar,phone mobile')->find();
|
|
$usermsg = Db::table('fa_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::table('fa_szxc_party_branch')->where('id',$data['party_branch'])->field('company')->find();
|
|
return $find['company'];
|
|
})
|
|
->page($page)->limit(20)->select();
|
|
return $this->apiSuccess('ok',$select);
|
|
}
|
|
|
|
public function add($user_id){
|
|
$user = Db::connect('shop')->table('eb_user')->where('uid',$user_id)->field('nickname,avatar,phone mobile,gender')->find();
|
|
$usermsg = Db::table('fa_szxc_information_usermsg')->where('user_id',$user_id)->field('idcard,age,political_outlook,marriage')->find();
|
|
return $this->apiSuccess('ok',['userinfo'=>array_merge($user,$usermsg)]);
|
|
|
|
}
|
|
public function post(){
|
|
$input=get_params();
|
|
$res=$this->validate->check($input);
|
|
if (!$res){
|
|
return $this->apiError($this->validate->getError());
|
|
}
|
|
$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());
|
|
}
|
|
$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('删除失败');
|
|
}
|
|
}
|
|
}
|