207 lines
7.8 KiB
PHP
207 lines
7.8 KiB
PHP
<?php
|
|
namespace app\api\controller\party;
|
|
use app\admin\model\User;
|
|
use app\common\controller\Api;
|
|
use app\admin\model\party\Branch as BranchModel;
|
|
use app\admin\validate\party\Branch as BranchValdate;
|
|
use think\App;
|
|
use think\facade\Db;
|
|
|
|
/**
|
|
* 党支部
|
|
*/
|
|
class Branch extends Api{
|
|
|
|
protected $noNeedRight = ['*'];
|
|
public function __construct(App $app)
|
|
{
|
|
parent::__construct($app);
|
|
$this->model = new BranchModel();
|
|
$this->validate = new BranchValdate();
|
|
}
|
|
|
|
public function index($page=1) {
|
|
$where=[
|
|
['status','=', 1],
|
|
];
|
|
//根据个人村id进行查询
|
|
if ($this->auth->id) {
|
|
$find = Db::name('szxc_information_useraddress')->where('user_id', $this->auth->id)->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']];
|
|
}
|
|
}
|
|
}
|
|
$select=Db::name('szxc_party_branch')->where($where)
|
|
->withAttr('nickname',function ($value, $data){
|
|
$find= Db::name('user')->where('id',$data['user_id'])->field('nickname')->find();
|
|
return $find?$find['nickname']:'';
|
|
})
|
|
->withAttr('two_nickname',function ($value, $data){
|
|
$find= Db::name('user')->where('id',$data['two_user_id'])->field('nickname')->find();
|
|
return $find?$find['nickname']:'';
|
|
})
|
|
->withAttr('count',function ($value, $data){
|
|
$find= Db::name('szxc_party_info')->where('party_branch',$data['id'])->where('branch_type',1)->count();
|
|
return $find;
|
|
})
|
|
->page($page)->limit(20)->select();
|
|
$branch_count=Db::name('szxc_party_branch')->where('status', 1)->count();
|
|
$info_count=Db::name('szxc_party_info')->where('status', 1)->where('branch_type',1)->count();
|
|
$info_count_two=Db::name('szxc_party_info')->where('status', 1)->where('branch_type',2)->count();
|
|
$data=[
|
|
'page'=>$page,
|
|
'branch_count'=>$branch_count,//支部总数
|
|
'info_count'=>$info_count,//党员总数
|
|
'info_count_two'=>$info_count_two,//预备役总数
|
|
'list' =>$select//党支部列表
|
|
];
|
|
return $this->success('ok',$data);
|
|
}
|
|
/** 党员信息
|
|
* @param $search
|
|
* @param $page
|
|
*/
|
|
public function info($id) {
|
|
$where=[
|
|
['status','=', 1],
|
|
['user_id','=',$id],
|
|
];
|
|
|
|
$user_info=Db::name('szxc_information_usermsg')->where($where)
|
|
->withAttr('category_info',function ($value, $data){
|
|
$find=Db::name('category')->where('id',$data['marital_status'])->find();
|
|
$nation=Db::name('category')->where('id',$data['nation'])->find();
|
|
$datas['marital']=$find['name'];
|
|
$datas['nation']=$nation['name'];
|
|
return $datas;
|
|
})
|
|
->withAttr('branch_info',function ($value, $data){
|
|
$find=Db::name('szxc_party_branch')->where('id',$data['branch_id'])
|
|
->withAttr('user_nickname',function ($value, $data){
|
|
$find=Db::name('szxc_information_usermsg')->where('user_id',$data['user_id'])->field('name')->find();
|
|
return $find?$find['name']:'';
|
|
})
|
|
->withAttr('two_user_nickname',function ($value, $data){
|
|
$find=Db::name('szxc_information_usermsg')->where('user_id',$data['two_user_id'])->field('name')->find();
|
|
return $find?$find['name']:'';
|
|
})
|
|
->find();
|
|
return $find;
|
|
})
|
|
->withAttr('branch_user_info',function ($value, $data){
|
|
$find=Db::name('szxc_party_info')->where('user_id',$data['user_id'])->find();
|
|
return $find;
|
|
})
|
|
->find();
|
|
return $this->success('ok',$user_info);
|
|
}
|
|
public function info_save($id,$branch_id) {
|
|
// $where=[
|
|
// ['status','=', 1],
|
|
// ['user_id','=',$id],
|
|
// ['branch_id','=',$id],
|
|
// ];
|
|
$input=$this->request->post();
|
|
|
|
$find=Db::name('szxc_party_info')->where('user_id',$id)->find();
|
|
if ($find){
|
|
Db::name('szxc_party_info')->where('user_id',$id)->update($input);
|
|
return $this->success('ok','修改成功');
|
|
|
|
}else{
|
|
$input['party_branch']=$branch_id;
|
|
$input['user_id']=$id;
|
|
Db::name('szxc_party_info')->insert($input);
|
|
return $this->success('ok','添加成功');
|
|
|
|
};
|
|
}
|
|
/** 党员管理
|
|
* @param $search
|
|
* @param $page
|
|
*/
|
|
public function info_list($id,$search,$page=1) {
|
|
$where=[
|
|
['status','=', 1],
|
|
['party_branch','=', $id],
|
|
];
|
|
if ($search!=''){
|
|
$where[]=['title','like','%'.$search.'%'];
|
|
}
|
|
$branch=Db::name('szxc_party_branch')->where('id',$id)->find();
|
|
|
|
$select = Db::name('szxc_party_info')->withAttr('user_info', function ($value, $data) {
|
|
$find = Db::name('user')->where('id', $data['user_id'])->field('nickname,mobile,avatar')->find();
|
|
return $find;
|
|
})
|
|
->where($where)->page($page)->limit(20)->select();
|
|
|
|
$info_count=Db::name('szxc_party_info')->where('status', 1)->where('branch_type',1)->count();
|
|
$info_count_two=Db::name('szxc_party_info')->where('status', 1)->where('branch_type',2)->count();
|
|
$data=[
|
|
'page'=>$page,
|
|
'branch'=>$branch,
|
|
'info_count'=>$info_count,//党员总数
|
|
'info_count_two'=>$info_count_two,//预备役总数
|
|
'list' =>$select//党员列表
|
|
];
|
|
return $this->success('ok',$data);
|
|
}
|
|
public function add(){
|
|
|
|
}
|
|
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=Db::name('szxc_party_branch')->where('id',$id)->where('status', 1)
|
|
->withAttr('nickname',function ($value, $data){
|
|
$find= Db::name('user')->where('id',$data['user_id'])->field('nickname')->find();
|
|
return $find?$find['nickname']:'';
|
|
})
|
|
->withAttr('two_nickname',function ($value, $data){
|
|
$find= Db::name('user')->where('id',$data['two_user_id'])->field('nickname')->find();
|
|
return $find?$find['nickname']:'';
|
|
})->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());
|
|
}
|
|
$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('删除失败');
|
|
}
|
|
}
|
|
}
|