123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use app\common\library\Ems;
- use app\common\library\Sms;
- use fast\Random;
- use think\Db;
- use think\Validate;
- /**
- * 会员接口
- */
- class Users extends Api
- {
- protected $noNeedLogin = '*';
- protected $noNeedRight = '*';
- public function _initialize()
- {
- parent::_initialize();
- }
- /**
- * 单位树下用户信息显示接口
- * t_id (单位树id)
- */
- public function usersShow()
- {
- $t_id = $this->request->post('t_id');
- if (!isset($t_id)) {
- return $this->result('未获取t_id', [], 100);
- }
- // 查出用户基本信息
- $data = Db::name('users u')
- ->where('user_type',$t_id)
- ->select();
- foreach ($data as &$v) {
- $v['user_image'] = config('site.url').$v['user_image'];
- }
- if ($data) {
- return $this->result('', $data,200);
- } else {
- return $this->result('暂无人员',[],100);
- }
- }
- /**
- * 用户详细信息 user_id (包括简历和社会关系)
- */
- public function userInfo()
- {
- $user_id =$this->request->post('user_id');
- if(!isset($user_id)) {
- return $this->result('未获取user_id',[] ,100);
- }
- $data = Db::name('users')
- ->where('user_id',$user_id)
- ->find();
- if ($data) {
- // 用户先例
- $data['resume'] = Db::name('resume')
- ->where('user_id',$user_id)
- ->find();
- // 关联用户社会关系
- $data['sociogram'] = Db::name('sociogram')
- ->where('user_id',$user_id)
- ->select();
- $data['user_image'] = config('site.url').$data['user_image'];
- return $this->result('',$data,200);
- } else {
- return $this->result('信息获取错误',[],100);
- }
- }
- /**
- * 单位树显示
- */
- public function type()
- {
- $data = Db::name('type')
- ->where('f_id',0)
- ->order('f_sort',"desc")
- ->select();
- if ($data) {
- foreach ($data as &$v) {
- // 循环查出子单位
- $v['ztype'] = Db::name('type')
- ->where('f_id',$v['t_id'])
- ->order('z_sort',"desc")
- ->select();
- }
- return $this->result('',$data,200);
- } else {
- return $this->result('暂无数据',[],100);
- }
- }
- /**
- * 用户搜索
- */
- public function usersSearch()
- {
- $params = $this->request->post();
- $where = array();
- if (isset($params['user_name']) && $params['user_name'] != '') {
- $where['user_name'] = ['like','%' . $params['user_name'] . '%'];
- }
- if (isset($params['user_sex']) && $params['user_sex'] != '') {
- $where['user_sex'] = $params['user_sex'];
- }
- // halt($params);
- // 行政级别
- if (isset($params['user_administrative_level']) && $params['user_administrative_level'] != '') {
- $where['user_administrative_level'] = $params['user_administrative_level'];
- }
- // 民族
- if (isset($params['user_nation']) && $params['user_nation'] != '' ) {
- if ($params['user_nation'] == '汉族') {
- $where['user_nation'] = $params['user_nation'];
- } else {
- $where['user_nation'] = ['neq','汉族'];
- }
- }
- // 政治面貌
- if (isset($params['user_politics']) && $params['user_politics'] != '' ) {
- if ($params['user_politics'] == '中共党员') {
- $where['user_politics'] = $params['user_politics'];
- } else {
- $where['user_politics'] = ['neq','中共党员'];
- }
- }
- // 籍贯
- if (isset($params['user_native']) && $params['user_native'] != '') {
- $where['user_native'] = ['like', '%' . $params['user_native'] . '%'];
- }
- // 在职教育学历
- if (isset($params['user_degree_b']) && $params['user_degree_b'] != '' ) {
- $where['user_degree_b'] = ['like', '%' . $params['user_degree_b'] . '%'];
- }
- // 全日制教育学历
- if (isset($params['user_education_full']) && $params['user_education_full'] != '' ) {
- $where['user_education_full'] = ['like', '%' . $params['user_education_full'] . '%'];
- }
- // 年龄
- if (isset($params['user_age']) && gettype($params['user_age']) == 'array' && $params['user_age']['a'] != '') {
- $where['user_age'] = ['between', $params['user_age']['a'].','.$params["user_age"]['b']];
- }
- // halt($where);
- $data = Db::name('users')
- ->where($where)
- ->select();
- if ($data) {
- foreach($data as &$v) {
- $v['user_image'] = config('site.url').$v['user_image'];
- }
- return $this->result('',$data,200);
- } else {
- return $this->result('未检测到数据',[],100);
- }
- }
- /**
- * 性别比例统计图
- * t_id
- */
- public function sexStatistics()
- {
- $t_id = $this->request->post('t_id') ;
- if (!isset($t_id)) {
- return $this->result('单位树id未接收到',[],100);
- }
- // 查出用户总人数
- $peopel_count = Db::name('users')
- ->where('user_type',$t_id)
- ->count();
- if ($peopel_count) {
- /**
- * 性别比例
- */
- // 查出女生总人数
- $woman_count = Db::name('users')
- ->where('user_sex','女')
- ->where('user_type',$t_id)
- ->count();
- // 查出男生总人数
- $man_count = Db::name('users')
- ->where('user_sex','男')
- ->where('user_type',$t_id)
- ->count();
- // 求出饼图的男女比例
- $data['sex']['bing']['woman_bili'] = round($woman_count/$peopel_count,2);
- $data['sex']['bing']['man_bili'] = round($man_count/$peopel_count,2);
- // 求出柱图数据
- $data['sex']['zhu']['woman_count'] = $woman_count;
- $data['sex']['zhu']['man_count'] = $man_count;
- // 求出折现数据
- $data['sex']['zhe']['woman_count'] = $woman_count;
- $data['sex']['zhe']['man_count'] = $man_count;
- /**
- * 年龄比例
- */
- // 设置年龄区间
- $age = array(
- '20' => 25,
- '25' => 30,
- '30' => 35,
- '35' => 40,
- '40' => 50,
- );
- $keys = array(
- '20' => "a",
- '25' => "b",
- '30' => "c",
- '35' => "d",
- '40' => "e",
- );
- foreach ($age as $key => $value) {
- // 求出各个年龄区间的人数
- $age_count = Db::name('users')
- ->where('user_age','between',$key . ',' . $value)
- ->where('user_type',$t_id)
- ->count();
- // 求出所占饼状的比例
- $data['age']['bing'][$keys[$key]] = round($age_count/$peopel_count,2);
- // 各个年龄区间柱状人数
- $data['age']['zhu'][$keys[$key]] = $age_count;
- $data['age']['zhe'][$keys[$key]] = $age_count;
- }
- /**
- * 职务比例
- */
- // 管理岗位人数
- $guanli_count = Db::name('users')
- ->where('user_major','管理岗位')
- ->where('user_type',$t_id)
- ->count();
- // 专业技术岗位
- $jishu_count = Db::name('users')
- ->where('user_major','专业技术岗位')
- ->where('user_type',$t_id)
- ->count();
- // 工勤技能岗位
- $jineng_coung = Db::name('users')
- ->where('user_major','工勤技能岗位')
- ->where('user_type',$t_id)
- ->count();
- // 管理岗位饼状
- $data['zhiwu']['bing']['guanli'] = round($guanli_count/$peopel_count,2);
- // 专业技术饼状
- $data['zhiwu']['bing']['jishu'] = round($jishu_count/$peopel_count,2);
- // 工勤技能饼状
- $data['zhiwu']['bing']['jineng'] = round($jineng_coung/$peopel_count,2);
- // 管理岗位柱状+折现
- $data['zhiwu']['zhuZhe']['guanli'] = $guanli_count;
- // 专业技术柱状+折现
- $data['zhiwu']['zhuZhe']['jishu'] = $jishu_count;
- // 工期技能柱状+折现
- $data['zhiwu']['zhuZhe']['jineng'] = $jineng_coung;
- /**
- * 学历比例
- */
- // 初中学历人数
- $chuzhong = Db::name('users')
- ->where('user_education_full','初中')
- ->where('user_type',$t_id)
- ->count();
- // 高中学历人数
- $gaozhong = Db::name('users')
- ->where('user_education_full','高中')
- ->where('user_type',$t_id)
- ->count();
- // 中专学历人数
- $zhongzhuan = Db::name('users')
- ->where('user_education_full','中专')
- ->where('user_type',$t_id)
- ->count();
- // 大专学历人数
- $dazhuan = Db::name('users')
- ->where('user_education_full','大专')
- ->where('user_type',$t_id)
- ->count();
- // 本科学历人数
- $benke = Db::name('users')
- ->where('user_education_full','本科')
- ->where('user_type',$t_id)
- ->count();
- // 研究生学历人数
- $yjs = Db::name('users')
- ->where('user_education_full','研究生')
- ->where('user_type',$t_id)
- ->count();
- // 党校大专学历人数
- $dxdz = Db::name('users')
- ->where('user_education_full','党校大专')
- ->where('user_type',$t_id)
- ->count();
- // 党校本科学历人数
- $dxbk = Db::name('users')
- ->where('user_education_full','党校本科')
- ->where('user_type',$t_id)
- ->count();
- // 党校研究生学历人数
- $dxyjs = Db::name('users')
- ->where('user_education_full','党校研究生')
- ->where('user_type',$t_id)
- ->count();
- // 其他学历人数
- $qita = Db::name('users')
- ->where('user_education_full','其他')
- ->where('user_type',$t_id)
- ->count();
- // 无学历人数
- $wu = Db::name('users')
- ->where('user_education_full','无')
- ->where('user_type',$t_id)
- ->count();
- // 初中学历饼状
- $data['xueli']['bing']['chuzhong'] = round($chuzhong/$peopel_count,2);
- // 高中学历饼状
- $data['xueli']['bing']['gaozhong'] = round($gaozhong/$peopel_count,2);
- // 中专学历饼状
- $data['xueli']['bing']['zhongzhuan'] = round($zhongzhuan/$peopel_count,2);
- // 大专学历饼状
- $data['xueli']['bing']['dazhuan'] = round($dazhuan/$peopel_count,2);
- // 本科学历饼状
- $data['xueli']['bing']['benke'] = round($benke/$peopel_count,2);
- // 研究生学历饼状
- $data['xueli']['bing']['yjs'] = round($yjs/$peopel_count,2);
- // 党校大专学历饼状
- $data['xueli']['bing']['dxdz'] = round($dxdz/$peopel_count,2);
- // 党校本科学历饼状
- $data['xueli']['bing']['dxbk'] = round($dxbk/$peopel_count,2);
- // 党校研究生学历饼状
- $data['xueli']['bing']['dxyjs'] = round($dxyjs/$peopel_count,2);
- // 其他学历饼状
- $data['xueli']['bing']['qita'] = round($qita/$peopel_count,2);
- // 无学历饼状
- $data['xueli']['bing']['wu'] = round($wu/$peopel_count,2);
- // 初中学历柱状加折现
- $data['xueli']['zhuZhe']['chuzhong'] = $chuzhong;
- // 初中学历柱状加折现
- $data['xueli']['zhuZhe']['gaozhong'] = $gaozhong;
- // 初中学历柱状加折现
- $data['xueli']['zhuZhe']['zhongzhuan'] = $zhongzhuan;
- // 初中学历柱状加折现
- $data['xueli']['zhuZhe']['dazhuan'] = $dazhuan;
- // 初中学历柱状加折现
- $data['xueli']['zhuZhe']['benke'] = $benke;
- // 初中学历柱状加折现
- $data['xueli']['zhuZhe']['yjs'] = $yjs;
- // 初中学历柱状加折现
- $data['xueli']['zhuZhe']['dxdz'] = $dxdz;
- // 初中学历柱状加折现
- $data['xueli']['zhuZhe']['dxbk'] = $dxbk;
- // 初中学历柱状加折现
- $data['xueli']['zhuZhe']['dxyjs'] = $dxyjs;
- // 初中学历柱状加折现
- $data['xueli']['zhuZhe']['qita'] = $qita;
- // 初中学历柱状加折现
- $data['xueli']['zhuZhe']['wu'] = $wu;
- return $this->result('',$data,200);
- } else {
- return $this->result('该单位下暂无用户',[],100);
- }
- }
- }
|