Users.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\library\Ems;
  5. use app\common\library\Sms;
  6. use fast\Random;
  7. use think\Db;
  8. use think\Validate;
  9. /**
  10. * 会员接口
  11. */
  12. class Users extends Api
  13. {
  14. protected $noNeedLogin = '*';
  15. protected $noNeedRight = '*';
  16. public function _initialize()
  17. {
  18. parent::_initialize();
  19. }
  20. /**
  21. * 单位树下用户信息显示接口
  22. * t_id (单位树id)
  23. */
  24. public function usersShow()
  25. {
  26. $t_id = $this->request->post('t_id');
  27. if (!isset($t_id)) {
  28. return $this->result('未获取t_id', [], 100);
  29. }
  30. // 查出用户基本信息
  31. $data = Db::name('users u')
  32. ->where('user_type',$t_id)
  33. ->select();
  34. foreach ($data as &$v) {
  35. $v['user_image'] = config('site.url').$v['user_image'];
  36. $v['user_year_time'] = date('Y/m/d',$v['user_year_time']);
  37. }
  38. if ($data) {
  39. return $this->result('', $data,200);
  40. } else {
  41. return $this->result('暂无人员',[],100);
  42. }
  43. }
  44. /**
  45. * 用户详细信息 user_id (包括简历和社会关系)
  46. */
  47. public function userInfo()
  48. {
  49. $user_id =$this->request->post('user_id');
  50. if(!isset($user_id)) {
  51. return $this->result('未获取user_id',[] ,100);
  52. }
  53. $data = Db::name('users')
  54. ->where('user_id',$user_id)
  55. ->find();
  56. if ($data) {
  57. // 用户先例
  58. $data['resume'] = Db::name('resume')
  59. ->where('user_id',$user_id)
  60. ->find();
  61. // 关联用户社会关系
  62. $data['sociogram'] = Db::name('sociogram')
  63. ->where('user_id',$user_id)
  64. ->select();
  65. $data['user_image'] = config('site.url').$data['user_image'];
  66. $data['user_party_time'] = date('Y/m/d',$data['user_party_time']);
  67. $data['user_join_job_time'] = date('Y/m/d',$data['user_join_job_time']);
  68. return $this->result('',$data,200);
  69. } else {
  70. return $this->result('信息获取错误',[],100);
  71. }
  72. }
  73. /**
  74. * 单位树显示
  75. */
  76. public function type()
  77. {
  78. $data = Db::name('type')
  79. ->where('f_id',0)
  80. ->select();
  81. if ($data) {
  82. foreach ($data as &$v) {
  83. // 循环查出子单位
  84. $v['ztype'] = Db::name('type')->where('f_id',$v['t_id'])->select();
  85. }
  86. return $this->result('',$data,200);
  87. } else {
  88. return $this->result('暂无数据',[],100);
  89. }
  90. }
  91. /**
  92. * 用户搜索
  93. */
  94. public function usersSearch()
  95. {
  96. $params = $this->request->post();
  97. $where = array();
  98. if (isset($params['user_name'])) {
  99. $where['user_name'] = ['like','%' . $params['user_name'] . '%'];
  100. }
  101. if (isset($params['user_sex'])) {
  102. $where['user_sex'] = $params['user_sex'];
  103. }
  104. // 行政级别
  105. if (isset($params['user_administrative_level'])) {
  106. $where['user_administrative_level'] = $params['user_administrative_level'];
  107. }
  108. // 民族
  109. if (isset($params['user_nation'])) {
  110. if ($params['user_nation'] == '汉族') {
  111. $where['user_nation'] = $params['user_nation'];
  112. } else {
  113. $where['user_nation'] = ['neq','汉族'];
  114. }
  115. }
  116. // 政治面貌
  117. if (isset($params['user_politics'])) {
  118. if ($params['user_politics'] == '中共党员') {
  119. $where['user_politics'] = $params['user_politics'];
  120. } else {
  121. $where['user_politics'] = ['neq','中共党员'];
  122. }
  123. }
  124. // 籍贯
  125. if (isset($params['user_native'])) {
  126. $where['user_native'] = ['like', '%' . $params['user_native'] . '%'];
  127. }
  128. // 在职教育学历
  129. if (isset($params['user_degree_b'])) {
  130. $where['user_degree_b'] = ['like', '%' . $params['user_degree_b'] . '%'];
  131. }
  132. // 全日制教育学历
  133. if (isset($params['user_education_full'])) {
  134. $where['user_education_full'] = ['like', '%' . $params['user_education_full'] . '%'];
  135. }
  136. // 年龄
  137. if (isset($params['user_age'])) {
  138. $where['user_age'] = ['between', $params['user_age'][0].','.$params["user_age"][1]];
  139. }
  140. $data = Db::name('users')
  141. ->where($where)
  142. ->select();
  143. if ($data) {
  144. foreach($data as &$v) {
  145. $v['user_image'] = config('site.url').$v['user_image'];
  146. $v['user_year_time'] = date('Y/m/d',$v['user_year_time']);
  147. }
  148. return $this->result('',$data,200);
  149. } else {
  150. return $this->result('未检测到数据',[],100);
  151. }
  152. }
  153. /**
  154. * 性别比例统计图
  155. * t_id
  156. */
  157. public function sexStatistics()
  158. {
  159. $t_id = $this->request->post('t_id');
  160. if (!isset($t_id)) {
  161. return $this->result('单位树id未接收到',[],100);
  162. }
  163. // 查出用户总人数
  164. $peopel_count = Db::name('users')
  165. ->where('user_type',$t_id)
  166. ->count();
  167. if ($peopel_count) {
  168. /**
  169. * 性别比例
  170. */
  171. // 查出女生总人数
  172. $woman_count = Db::name('users')
  173. ->where('user_sex','女')
  174. ->where('user_type',$t_id)
  175. ->count();
  176. // 查出男生总人数
  177. $man_count = Db::name('users')
  178. ->where('user_sex','男')
  179. ->where('user_type',$t_id)
  180. ->count();
  181. // 求出饼图的男女比例
  182. $data['sex']['bing']['woman_bili'] = round($woman_count/$peopel_count,2);
  183. $data['sex']['bing']['man_bili'] = round($man_count/$peopel_count,2);
  184. // 求出柱图数据
  185. $data['sex']['zhu']['woman_count'] = $woman_count;
  186. $data['sex']['zhu']['man_count'] = $man_count;
  187. // 求出折现数据
  188. $data['sex']['zhe']['woman_count'] = $woman_count;
  189. $data['sex']['zhe']['man_count'] = $man_count;
  190. /**
  191. * 年龄比例
  192. */
  193. // 设置年龄区间
  194. $age = array(
  195. '20' => 25,
  196. '25' => 30,
  197. '30' => 35,
  198. '35' => 40,
  199. '40' => 50,
  200. );
  201. foreach ($age as $key => $value) {
  202. // 求出各个年龄区间的人数
  203. $age_count = Db::name('users')
  204. ->where('user_age','between',$key . ',' . $value)
  205. ->where('user_type',$t_id)
  206. ->count();
  207. // 求出所占饼状的比例
  208. $data['age']['bing'][$key.'-'.$value] = round($age_count/$peopel_count,2);
  209. // 各个年龄区间柱状人数
  210. $data['age']['zhu'][$key.'-'.$value] = $age_count;
  211. $data['age']['zhe'][$key.'-'.$value] = $age_count;
  212. }
  213. /**
  214. * 职务比例
  215. */
  216. // 管理岗位人数
  217. $guanli_count = Db::name('users')
  218. ->where('user_major','管理岗位')
  219. ->where('user_type',$t_id)
  220. ->count();
  221. // 专业技术岗位
  222. $jishu_count = Db::name('users')
  223. ->where('user_major','专业技术岗位')
  224. ->where('user_type',$t_id)
  225. ->count();
  226. // 工勤技能岗位
  227. $jineng_coung = Db::name('users')
  228. ->where('user_major','工勤技能岗位')
  229. ->where('user_type',$t_id)
  230. ->count();
  231. // 管理岗位饼状
  232. $data['zhiwu']['bing']['guanli'] = round($guanli_count/$peopel_count,2);
  233. // 专业技术饼状
  234. $data['zhiwu']['bing']['jishu'] = round($jishu_count/$peopel_count,2);
  235. // 工勤技能饼状
  236. $data['zhiwu']['bing']['jineng'] = round($jineng_coung/$peopel_count,2);
  237. // 管理岗位柱状+折现
  238. $data['zhiwu']['zhuZhe']['guanli'] = $guanli_count;
  239. // 专业技术柱状+折现
  240. $data['zhiwu']['zhuZhe']['jishu'] = $jishu_count;
  241. // 工期技能柱状+折现
  242. $data['zhiwu']['zhuZhe']['jineng'] = $jineng_coung;
  243. /**
  244. * 学历比例
  245. */
  246. // 初中学历人数
  247. $chuzhong = Db::name('users')
  248. ->where('user_education_full','初中')
  249. ->where('user_type',$t_id)
  250. ->count();
  251. // 高中学历人数
  252. $gaozhong = Db::name('users')
  253. ->where('user_education_full','高中')
  254. ->where('user_type',$t_id)
  255. ->count();
  256. // 中专学历人数
  257. $zhongzhuan = Db::name('users')
  258. ->where('user_education_full','中专')
  259. ->where('user_type',$t_id)
  260. ->count();
  261. // 大专学历人数
  262. $dazhuan = Db::name('users')
  263. ->where('user_education_full','大专')
  264. ->where('user_type',$t_id)
  265. ->count();
  266. // 本科学历人数
  267. $benke = Db::name('users')
  268. ->where('user_education_full','本科')
  269. ->where('user_type',$t_id)
  270. ->count();
  271. // 研究生学历人数
  272. $yjs = Db::name('users')
  273. ->where('user_education_full','研究生')
  274. ->where('user_type',$t_id)
  275. ->count();
  276. // 党校大专学历人数
  277. $dxdz = Db::name('users')
  278. ->where('user_education_full','党校大专')
  279. ->where('user_type',$t_id)
  280. ->count();
  281. // 党校本科学历人数
  282. $dxbk = Db::name('users')
  283. ->where('user_education_full','党校本科')
  284. ->where('user_type',$t_id)
  285. ->count();
  286. // 党校研究生学历人数
  287. $dxyjs = Db::name('users')
  288. ->where('user_education_full','党校研究生')
  289. ->where('user_type',$t_id)
  290. ->count();
  291. // 其他学历人数
  292. $qita = Db::name('users')
  293. ->where('user_education_full','其他')
  294. ->where('user_type',$t_id)
  295. ->count();
  296. // 无学历人数
  297. $wu = Db::name('users')
  298. ->where('user_education_full','无')
  299. ->where('user_type',$t_id)
  300. ->count();
  301. // 初中学历饼状
  302. $data['xueli']['bing']['chuzhong'] = round($chuzhong/$peopel_count,2);
  303. // 高中学历饼状
  304. $data['xueli']['bing']['gaozhong'] = round($gaozhong/$peopel_count,2);
  305. // 中专学历饼状
  306. $data['xueli']['bing']['zhongzhuan'] = round($zhongzhuan/$peopel_count,2);
  307. // 大专学历饼状
  308. $data['xueli']['bing']['dazhuan'] = round($dazhuan/$peopel_count,2);
  309. // 本科学历饼状
  310. $data['xueli']['bing']['benke'] = round($benke/$peopel_count,2);
  311. // 研究生学历饼状
  312. $data['xueli']['bing']['yjs'] = round($yjs/$peopel_count,2);
  313. // 党校大专学历饼状
  314. $data['xueli']['bing']['dxdz'] = round($dxdz/$peopel_count,2);
  315. // 党校本科学历饼状
  316. $data['xueli']['bing']['dxbk'] = round($dxbk/$peopel_count,2);
  317. // 党校研究生学历饼状
  318. $data['xueli']['bing']['dxyjs'] = round($dxyjs/$peopel_count,2);
  319. // 其他学历饼状
  320. $data['xueli']['bing']['qita'] = round($qita/$peopel_count,2);
  321. // 无学历饼状
  322. $data['xueli']['bing']['wu'] = round($wu/$peopel_count,2);
  323. // 初中学历柱状加折现
  324. $data['xueli']['zhuZhe']['chuzhong'] = $chuzhong;
  325. // 初中学历柱状加折现
  326. $data['xueli']['zhuZhe']['gaozhong'] = $gaozhong;
  327. // 初中学历柱状加折现
  328. $data['xueli']['zhuZhe']['zhongzhuan'] = $zhongzhuan;
  329. // 初中学历柱状加折现
  330. $data['xueli']['zhuZhe']['dazhuan'] = $dazhuan;
  331. // 初中学历柱状加折现
  332. $data['xueli']['zhuZhe']['benke'] = $benke;
  333. // 初中学历柱状加折现
  334. $data['xueli']['zhuZhe']['yjs'] = $yjs;
  335. // 初中学历柱状加折现
  336. $data['xueli']['zhuZhe']['dxdz'] = $dxdz;
  337. // 初中学历柱状加折现
  338. $data['xueli']['zhuZhe']['dxbk'] = $dxbk;
  339. // 初中学历柱状加折现
  340. $data['xueli']['zhuZhe']['dxyjs'] = $dxyjs;
  341. // 初中学历柱状加折现
  342. $data['xueli']['zhuZhe']['qita'] = $qita;
  343. // 初中学历柱状加折现
  344. $data['xueli']['zhuZhe']['wu'] = $wu;
  345. return $this->result('',$data,200);
  346. } else {
  347. return $this->result('该单位下暂无用户',[],100);
  348. }
  349. }
  350. }