Users.php 14 KB

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