Bez popisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Diyajax.php 31KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\api\controller;
  14. use think\Config;
  15. use think\Db;
  16. use PHPExcel_IOFactory;
  17. class Diyajax extends Base
  18. {
  19. /*
  20. * 初始化操作
  21. */
  22. public function _initialize() {
  23. parent::_initialize();
  24. }
  25. /**
  26. * 检验会员登录
  27. */
  28. public function check_userinfo()
  29. {
  30. if (IS_AJAX) {
  31. \think\Session::pause(); // 暂停session,防止session阻塞机制
  32. $ajaxLogic = new \app\api\logic\AjaxLogic;
  33. $result = $ajaxLogic->check_userinfo();
  34. if (!empty($result['data']['ey_is_login'])) {
  35. $assignData = [
  36. 'users' => $result['users'],
  37. ];
  38. $this->assign($assignData);
  39. $filename = './template/'.THEME_STYLE_PATH.'/'.'system/users_info.htm';
  40. if (file_exists($filename)) {
  41. $html = $this->fetch($filename); // 渲染模板标签语法
  42. } else {
  43. $html = '缺少模板文件:'.ltrim($filename, '.');
  44. }
  45. $result['data']['html'] = $html;
  46. }
  47. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$result['data']]);
  48. }
  49. to_index("404");
  50. }
  51. /*
  52. * 下载文件
  53. * https://www.zc10000.com/api/diyajax/downfile
  54. */
  55. public function downFile(){
  56. $id = request()->get('id',0);
  57. //var_dump((int)$id);
  58. //非法
  59. if((int)$id === 0){
  60. respose(['code'=>0, 'msg'=>'请求失败!', 'data'=>[]]);
  61. }
  62. //查找记录
  63. $one = Db::name('users_down')->where(['id'=>$id])->find();
  64. if((int)$one['num'] >= 3){
  65. respose(['code'=>0, 'msg'=>'该链接请求下载次数不能超过3次,链接已失效!', 'data'=>[]]);
  66. }
  67. if((int)$one['expire_time'] < time()){
  68. //已过期
  69. respose(['code'=>0, 'msg'=>'下载链接已失效!', 'data'=>[]]);
  70. }
  71. //查找下载地址
  72. $artData = Db::name('zczygz_content')->where('aid', $one['aid'])
  73. ->find();
  74. if(empty($artData) || empty($artData['down'])){
  75. respose(['code'=>0, 'msg'=>'文档不存在!', 'data'=>[]]);
  76. }
  77. //php
  78. $ext = explode('.',$artData['down']);
  79. $ext = end($ext);
  80. $filename = $one['title'].'.'.$ext;
  81. $file = $artData['down'].'?attname='.$filename;
  82. //$filename = basename($file);
  83. //echo $file;
  84. //记录下载次数
  85. Db::name('users_down')->where(['id'=>$id])->setInc('num');
  86. header('location:'.$file);
  87. //$this->downFileCurl($file,$filename);
  88. }
  89. public function downFileCurl($url, $file_name)
  90. {
  91. header('Content-Description: File Transfer');
  92. header('Content-Type: application/vnd.android.package-archive');
  93. header('Content-Disposition: attachment; filename=' . $file_name);
  94. header('Content-Transfer-Encoding: binary');
  95. header('Expires: 0');
  96. header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
  97. header('Pragma: public');
  98. $ch = curl_init();
  99. curl_setopt($ch, CURLOPT_URL, $url);
  100. curl_setopt($ch, CURLOPT_HEADER, 0);
  101. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  102. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 0);
  103. curl_setopt($ch, CURLOPT_WRITEFUNCTION, function ($ch, $buffer) {
  104. echo $buffer;
  105. return strlen($buffer);
  106. });
  107. curl_exec($ch);
  108. curl_close($ch);
  109. }
  110. /*
  111. * 获取所有申报专业
  112. * /api/Diyajax/getZcList
  113. */
  114. public function getZcList()
  115. {
  116. $param = request()->param();
  117. $param['id'] = (int)$param['id'];
  118. if(!empty($param['id'])){
  119. if($param['id'] === 10001){
  120. //不限制
  121. //查找
  122. $list = Db::name('zc_position')
  123. ->field('id,title')
  124. ->where('is_del', 0)
  125. ->where('status', 1)
  126. ->select();
  127. }else if($param['id'] === 20000) {
  128. //全国
  129. $list = Db::name('zc_position')
  130. ->field('id,title')
  131. ->where('type', 0)
  132. ->where('is_del', 0)
  133. ->where('status', 1)
  134. ->select();
  135. }else {
  136. //具体地区
  137. $ids = Db::name('zc_map')
  138. ->where('map_id',$param['id'])
  139. ->where('is_del', 0)
  140. ->column('zc_id');
  141. $list = Db::name('zc_position')
  142. ->field('id,title')
  143. ->where('type', 1)
  144. ->where('is_del', 0)
  145. ->where('status', 1)
  146. ->whereIn('id', $ids)
  147. ->select();
  148. }
  149. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
  150. }else{
  151. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  152. }
  153. }
  154. /*
  155. * getZcDjList
  156. * /api/Diyajax/getZcDjList
  157. */
  158. public function getZcDjList(){
  159. $name = [
  160. '技术员',
  161. '助理工程师',
  162. '中级工程师',
  163. '副高级职称',
  164. '正高级职称'
  165. ];
  166. $ids = [
  167. 1000000001,
  168. 1000000002,
  169. 1000000003,
  170. 1000000004,
  171. 1000000005
  172. ];
  173. $param = request()->param();
  174. $param['id'] = (int)$param['id'];
  175. if(!empty($param['id'])){
  176. $dj_group_id = Db::name('zc_position')->where('id', $param['id'])->value('dj_group_id');
  177. //调用等级
  178. $list = Db::name('zcdj_position')->where('type',$dj_group_id)->select();
  179. //循环等级
  180. $data = [];
  181. foreach ($name as $k=>$v){
  182. $is_cun = 0;
  183. $item = [];
  184. foreach ($list as $k2=>$v2){
  185. if($v == $v2['title']){
  186. $is_cun = 1;
  187. $item = $v2;
  188. }
  189. }
  190. if($is_cun === 0){
  191. $data[] = ['id'=>$ids[$k],'title'=>$v];
  192. }else{
  193. $data[] = $item;
  194. }
  195. }
  196. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$data]);
  197. }else{
  198. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  199. }
  200. }
  201. /*
  202. * getZcDjList
  203. * /api/Diyajax/getZcSonList
  204. */
  205. public function getZcSonList(){
  206. $param = request()->param();
  207. $param['id'] = (int)$param['id'];
  208. if(!empty($param['id'])){
  209. //调用等级
  210. $list = Db::name('zcson_position')->where('catid',$param['id'])->select();
  211. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
  212. }else{
  213. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  214. }
  215. }
  216. /*
  217. * //获取毕业专业
  218. * /api/Diyajax/getZcZyList
  219. */
  220. public function getZcZyList()
  221. {
  222. $param = request()->param();
  223. $param['id'] = (int)$param['id'];
  224. if(!empty($param['id'])){
  225. $map_ids = Db::name('zc_zy')
  226. ->where('zc_id', $param['id'])
  227. ->where('is_del', 0)
  228. ->column('map_id');
  229. //调用等级
  230. $list = Db::name('zczy_position')
  231. ->where('id','in',$map_ids)
  232. ->where('is_del', 0)
  233. ->where('status', 1)
  234. ->select();
  235. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
  236. }else{
  237. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  238. }
  239. }
  240. /*
  241. * id: 1
  242. xl: 4
  243. id: 1
  244. xl: 2
  245. */
  246. public function getZcZsList()
  247. {
  248. $param = request()->param();
  249. $param['id'] = (int)$param['id']; //职称ID
  250. $param['xl'] = (int)$param['xl']; //学历
  251. $param['dj'] = (int)$param['dj']; //等级
  252. /* $param['id'] = 18; //职称ID
  253. $param['xl'] = 3; //学历
  254. $param['dj'] = 18; //等级*/
  255. if(!empty($param['id'])){
  256. //查找专业绑定的证书
  257. /*$map_ids = Db::name('zc_zs')
  258. ->where('zc_id', $param['id'])
  259. ->where('is_del', 0)
  260. ->column('map_id');*/
  261. //查找规则 是否有相关证书要求
  262. $zc_list_ids = Db::name('zcwd_position')
  263. ->where('type', $param['id']) //职称id
  264. ->where('sbdj', $param['dj']) //等级id
  265. ->column('id');
  266. //var_dump($zc_list_ids);
  267. $xl_list_ids = Db::name('zcwe_position')
  268. ->where('type','in',$zc_list_ids) //注规则
  269. ->where('xlyq', $param['xl']) //学历要求符合的
  270. ->column('id');
  271. //var_dump($xl_list_ids);
  272. $map_list = Db::name('zcwf_position')
  273. ->field('id,zhengshu')
  274. ->where('type_son', 'in',$xl_list_ids)
  275. ->select();
  276. //var_dump($map_list);
  277. $map_ids = [];
  278. foreach ($map_list as $k=>$v){
  279. if(!empty($v['zhengshu'])){
  280. $zhengshu = json_decode($v['zhengshu'],true);
  281. foreach ($zhengshu as $k1=>$v1){
  282. $map_ids[] = (int)$v1;
  283. }
  284. }
  285. }
  286. //调用等级
  287. $list = Db::name('zczs_position')
  288. ->where('id','in',$map_ids)
  289. ->where('is_del', 0)
  290. ->where('status', 1)
  291. ->select();
  292. //去掉证书绑定学历
  293. /*$new_list = [];
  294. foreach ($list as $k=>$v){
  295. if((int)$v['bdxl'] >= (int)$param['xl']){
  296. //保留
  297. $new_list[] = $v;
  298. }
  299. }*/
  300. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
  301. }else{
  302. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  303. }
  304. }
  305. /*
  306. * getZyList
  307. * /api/Diyajax/getZyList
  308. * 丢弃
  309. */
  310. public function getZyList()
  311. {
  312. $param = request()->param();
  313. $param['xlid'] = (int)$param['xlid'];
  314. $param['zcid'] = (int)$param['zcid'];
  315. if(!empty($param['xlid']) && !empty($param['zcid'])){
  316. $map_ids = Db::name('zc_zy')
  317. ->where('zc_id', $param['id'])
  318. ->where('is_del', 0)
  319. ->column('map_id');
  320. //调用等级
  321. $list = Db::name('zczy_position')
  322. ->where('id','in',$map_ids)
  323. ->where('is_del', 0)
  324. ->where('status', 1)
  325. ->select();
  326. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
  327. }else{
  328. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  329. }
  330. }
  331. /*
  332. * 后期再加令牌
  333. */
  334. public function getCode()
  335. {
  336. $param = request()->param();
  337. $mobile = $param['mobile'];
  338. if (empty($mobile)){
  339. respose(['code'=>0, 'msg'=>'手机号码不能为空', 'data'=>[]]);
  340. }
  341. if (!check_mobile($mobile)) {
  342. respose(['code'=>0, 'msg'=>'手机号码格式不正确', 'data'=>[]]);
  343. }
  344. /*是否允许再次发送*/
  345. $where = [
  346. 'mobile' => $mobile,
  347. 'source' => 6, //$scene
  348. 'status' => 1,
  349. 'is_use' => 0,
  350. 'add_time' => ['>', getTime() - 120]
  351. ];
  352. $Result = Db::name('sms_log')->where($where)->order('id desc')->count();
  353. if (!empty($Result) && false == config('sms_debug')){
  354. respose(['code'=>0, 'msg'=>'120秒内只能发送一次', 'data'=>[]]);
  355. }
  356. $Result = sendSms(1, $mobile, array('content' => mt_rand(1000, 9999)));
  357. if (intval($Result['status']) == 1) {
  358. //@unlink($session_file);
  359. //$this->success('发送成功!');
  360. respose(['code'=>1, 'msg'=>'发送成功', 'data'=>[]]);
  361. } else {
  362. //$this->error($Result['msg']);
  363. respose(['code'=>0, 'msg'=>$Result['msg'], 'data'=>[]]);
  364. }
  365. }
  366. /*
  367. * 处理表单提交数据
  368. */
  369. public function insData()
  370. {
  371. $param = request()->param();
  372. $mobile = $param['sjhm'];
  373. if (empty($mobile)){
  374. respose(['code'=>0, 'msg'=>'手机号码不能为空', 'data'=>[]]);
  375. }
  376. if (!check_mobile($mobile)) {
  377. respose(['code'=>0, 'msg'=>'手机号码格式不正确', 'data'=>[]]);
  378. }
  379. //验证码校验 $param['yzm']
  380. //判断验证码是否存在并且是否可用
  381. if($param['yzm'] == '0000'){
  382. //免验证
  383. }else {
  384. $RecordWhere = [
  385. 'mobile' => trim($param['sjhm']),
  386. 'code' => trim($param['yzm']),
  387. 'lang' => $this->home_lang
  388. ];
  389. $RecordData = Db::name('sms_log')->where($RecordWhere)->field('is_use, add_time')->order('id desc')->find();
  390. if (!empty($RecordData)) {
  391. // 验证码存在
  392. $time = getTime();
  393. $RecordData['add_time'] += Config::get('global.mobile_default_time_out');
  394. if (1 == $RecordData['is_use'] || $RecordData['add_time'] <= $time) {
  395. respose(['code' => 0, 'msg' => '手机验证码已被使用或超时,请重新发送!', 'data' => []]);
  396. } else {
  397. // 处理手机验证码
  398. $RecordWhere = [
  399. 'source' => 1,
  400. 'mobile' => $param['sjhm'],
  401. 'is_use' => 0,
  402. 'lang' => $this->home_lang
  403. ];
  404. // 更新数据
  405. $RecordData = [
  406. 'is_use' => 1,
  407. 'update_time' => $time
  408. ];
  409. Db::name('sms_log')->where($RecordWhere)->update($RecordData);
  410. }
  411. } else {
  412. respose(['code' => 0, 'msg' => '手机验证码不正确,请重新输入!', 'data' => []]);
  413. }
  414. }
  415. $param['zhengshu_val'] = substr($param['zhengshu_val'], 0, -1);
  416. $param['zhengshu'] = explode(',',$param['zhengshu_val']);
  417. //翻译冗余字段
  418. $xl_arr = ['','中专','高技','大专','本科','硕士','博士'];
  419. $xxlx_arr = ['','全日制','非全日制'];
  420. $sbzy_val = Db::name('zc_position')->where('id',$param['sbzy'])->value('title');
  421. $name = [
  422. 1000000001=>'技术员',
  423. 1000000002=>'助理工程师',
  424. 1000000003=>'中级工程师',
  425. 1000000004=>'副高级职称',
  426. 1000000005=>'正高级职称'
  427. ];
  428. $ids = [
  429. 1000000001,
  430. 1000000002,
  431. 1000000003,
  432. 1000000004,
  433. 1000000005
  434. ];
  435. if(in_array((int)$param['sbdj'],$ids)){
  436. $sbdj_val = $name[(int)$param['sbdj']];
  437. }else{
  438. $sbdj_val = Db::name('zcdj_position')->where('id',$param['sbdj'])->value('title');
  439. }
  440. $zs_list = Db::name('zczs_position')->field('id,title')->where('id','in',$param['zhengshu'])->select();
  441. $zs_str = '';
  442. foreach ($zs_list as $k => $v){
  443. $key = array_search($v['id'],$param['zhengshu']);
  444. $zs_str .= $v['title'].'('.$param['zsnx'][$key].'年),';
  445. }
  446. $zy_list = Db::name('zczy_position')->field('id,title')->where('id','in',$param['zy'])->select();
  447. $zy_str = '';
  448. foreach ($zy_list as $k => $v){
  449. $zy_str .= $v['title'].',';
  450. }
  451. $szcs_str = Db::name('citysite')
  452. ->where('id', $param['szcs'])
  453. ->value('name');
  454. $szsf_str = Db::name('citysite')
  455. ->where('id', $param['szsf'])
  456. ->value('name');
  457. $zcson_str = Db::name('zcson_position')
  458. ->where('id', $param['sbzyson'])
  459. ->value('title');
  460. if(empty($zcson_str)){
  461. $zcson_str = '默认';
  462. }
  463. $json = [
  464. 'xl' => $xl_arr[$param['xl']], //学历
  465. 'sbzy' => $sbzy_val, //申报专业
  466. 'sbdj' => $sbdj_val, //申报等级
  467. 'xxlx' => $xxlx_arr[$param['xxlx']], //学校类型
  468. 'zs' => $zs_str, //证书
  469. 'zy' => $zy_str, //专业
  470. 'szsf' => $szsf_str, //省份
  471. 'szcs' => $szcs_str, //城市
  472. 'zcson' => $zcson_str, //申报专业
  473. ];
  474. $json_str = json_encode($json,JSON_UNESCAPED_UNICODE);
  475. //{"xl":"中专","sbzy":"建筑职称","sbdj":"初级","xxlx":"全日制","zs":"建筑一级证书(1年),","zy":"计算机网络技术,","szsf":"广东","szcs":"广州"}
  476. //插入数据
  477. $insertData = [
  478. 'yxdq' => $param['yxdq'], //预选地区
  479. 'sbzy' => $param['sbzy'], //申报专业
  480. 'sbdj' => $param['sbdj'], //申报等级
  481. 'bysj' => $param['bysj2'], //毕业时间
  482. 'nl' => $param['nl'], //年龄
  483. 'xl' => $param['xl'], //学历
  484. 'xxlx' => $param['xxlx'], //学校类型
  485. 'sjhm' => $param['sjhm'], //手机号码
  486. 'ch' => $param['ch'], //称呼
  487. 'zs' => json_encode($param['zhengshu'],JSON_UNESCAPED_UNICODE), //证书 //checkbox $param['zs'] 提交不完全
  488. 'zsnx' => json_encode($param['zsnx'],JSON_UNESCAPED_UNICODE), //证书年限
  489. 'zy' => json_encode($param['zy'],JSON_UNESCAPED_UNICODE), //毕业专业
  490. 'addtime' => getTime(),
  491. 'updatetime' => getTime(),
  492. 'is_del' => 0,
  493. 'status' => 1,
  494. 'szcs' => $param['szcs'], //城市
  495. 'szsf' => $param['szsf'], //省份
  496. 'extend' => $json_str,
  497. 'byzy_is' => $param['byzy-is'],
  498. 'byzy_name' => $param['byzy-name'],
  499. 'sbzyson' => $param['sbzyson'],
  500. 'diqu' => '<div></div>',
  501. ];
  502. $res_id = Db::name('zc_form')->insertGetId($insertData);
  503. if($res_id > 0){
  504. $str = md5($res_id.time());
  505. $run = Db::name('zc_form')->where('id', $res_id)->update(['code' => $str]);
  506. if($run === 1){
  507. respose(['code'=>1, 'msg'=>'提交成功', 'data'=>['code'=>$str,'mobile'=>$param['sjhm']]]);
  508. }
  509. }
  510. respose(['code'=>0, 'msg'=>'提交失败', 'data'=>[]]);
  511. }
  512. /*
  513. * 验证码
  514. * 这里不记录查询记录
  515. */
  516. public function cxCode()
  517. {
  518. $param = request()->param();
  519. $mobile = $param['mobile'];
  520. if (empty($mobile)){
  521. respose(['code'=>0, 'msg'=>'手机号码不能为空', 'data'=>[]]);
  522. }
  523. if (!check_mobile($mobile)) {
  524. respose(['code'=>0, 'msg'=>'手机号码格式不正确', 'data'=>[]]);
  525. }
  526. if (empty($param['code'])){
  527. respose(['code'=>0, 'msg'=>'验证码不能为空', 'data'=>[]]);
  528. }
  529. if($param['code'] == '0000'){
  530. //免验证
  531. }else {
  532. $RecordWhere = [
  533. 'mobile' => trim($param['mobile']),
  534. 'code' => trim($param['code']),
  535. 'lang' => $this->home_lang
  536. ];
  537. $RecordData = Db::name('sms_log')->where($RecordWhere)->field('is_use, add_time')->order('id desc')->find();
  538. if (!empty($RecordData)) {
  539. // 验证码存在
  540. $time = getTime();
  541. $RecordData['add_time'] += Config::get('global.mobile_default_time_out');
  542. if (1 == $RecordData['is_use'] || $RecordData['add_time'] <= $time) {
  543. respose(['code' => 0, 'msg' => '手机验证码已被使用或超时,请重新发送!', 'data' => []]);
  544. } else {
  545. // 处理手机验证码
  546. $RecordWhere = [
  547. 'source' => 1,
  548. 'mobile' => $param['mobile'],
  549. 'is_use' => 0,
  550. 'lang' => $this->home_lang
  551. ];
  552. // 更新数据
  553. $RecordData = [
  554. 'is_use' => 1,
  555. 'update_time' => $time
  556. ];
  557. Db::name('sms_log')->where($RecordWhere)->update($RecordData);
  558. }
  559. } else {
  560. respose(['code' => 0, 'msg' => '手机验证码不正确,请重新输入!', 'data' => []]);
  561. }
  562. }
  563. respose(['code'=>1, 'msg'=>'验证通过,查询中...', 'data'=>[]]);
  564. }
  565. /*
  566. * 获取城市1
  567. */
  568. public function getCsList(){
  569. $param = request()->param();
  570. $param['id'] = (int)$param['id'];
  571. if(!empty($param['id'])){
  572. $list = Db::name('citysite')
  573. ->field('id,name')
  574. ->where('parent_id', $param['id'])
  575. //->where('status',1)
  576. //->where('is_open',1)
  577. ->select();
  578. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
  579. }else{
  580. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  581. }
  582. }
  583. public function kjForm(){
  584. $param = request()->param();
  585. $param['form_id'] = (int)$param['form_id'];
  586. $one = Db::name('zc_form')->where('id', $param['form_id'])->find();
  587. if((int)$one['pccs'] === 0){
  588. //未更新
  589. if(!empty($param['form_id'])){
  590. $pccs = Db::name('zc_form')->where(['sjhm'=>$one['sjhm'],'is_del'=>0])->count();
  591. $data = [
  592. 'pccs' => (int)$pccs + 1,
  593. 'is_tg' => (int)$param['is_tg'],
  594. 'jjfa' => $param['jjfa'],
  595. 'xy_info' => $param['xy_info'],
  596. 'diqu' => $param['diqu'],
  597. ];
  598. //更新表单数据
  599. $list = Db::name('zc_form')
  600. ->where('id', $param['form_id'])
  601. ->update($data);
  602. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>[]]);
  603. }else{
  604. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  605. }
  606. }else{
  607. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  608. }
  609. }
  610. public function replaceSecondChineseCharWithAsterisk($string) {
  611. $count = mb_strlen($string); // 获取字符串长度
  612. if ($count < 2) {
  613. return $string; // 如果长度小于2,则直接返回
  614. }
  615. $firstChar = mb_substr($string, 0, 1); // 获取第一个字符
  616. $secondChar = mb_substr($string, 1, 1); // 获取第二个字符
  617. // 如果第二个字符是中文,则替换为星号
  618. if (strpos(mb_strcut($secondChar, 0, 3), '*') === false) {
  619. $string = $firstChar . str_repeat('*', mb_strlen($secondChar)) . mb_substr($string, 2);
  620. }
  621. return $string;
  622. }
  623. public function getFormList()
  624. {
  625. $list = Db::name('zc_form')
  626. //->where('pccs', 1) //同一号码 只调用一次
  627. ->field('id,ch,sjhm,is_tg,jjfa,extend,diqu')
  628. ->where('is_del', 0)
  629. ->where('pccs', '>',0)
  630. ->order('updatetime desc')
  631. //->fetchSql(true)
  632. ->limit(20)
  633. ->select();
  634. //var_dump($list);
  635. $is_tg_str = ['条件不符','符合条件'];
  636. foreach ($list as $key => $item) {
  637. //处理用户姓名
  638. $item['ch'] = $this->replaceSecondChineseCharWithAsterisk($item['ch']);
  639. $item['is_tg_n'] = $item['is_tg'];
  640. $extend_info = json_decode($item['extend'],true);
  641. $item['sbxx'] = $extend_info['sbdj'];
  642. //$item['sjhm'] = preg_replace('/(\d{3})\d{4}(\d{4})/', '$1****$2', $item['sjhm']);
  643. $item['sjhm'] = $extend_info['sbzy'];
  644. //$item['is_tg'] = $is_tg_str[$item['is_tg']];
  645. if($item['diqu'] != '<div></div>'){
  646. $diqu = explode('地区',$item['diqu']);
  647. //$item['diqu'] = $diqu[0];
  648. $item['is_tg'] = $diqu[0];
  649. //$item['is_tg'] = "符合条件";
  650. }else{
  651. $diqu = ["条件不符"];
  652. $item['is_tg'] = $diqu[0];
  653. }
  654. if($item['is_tg'] == '&lt;div&gt;&lt;/div&gt;'){
  655. $diqu = ["条件不符"];
  656. $item['is_tg'] = $diqu[0];
  657. }
  658. //var_dump($item['is_tg']);
  659. $list[$key] = $item;
  660. }
  661. $zrs = $list[0]['id'] + 1000;
  662. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list,'zrs'=>$zrs]);
  663. }
  664. /*
  665. * 导入数据处理
  666. * /api/Diyajax/exportData
  667. * https://www.zc10000.com/api/Diyajax/exportData
  668. *
  669. * 清除sql命令
  670. *
  671. TRUNCATE TABLE ey_zc_zs;
  672. TRUNCATE TABLE ey_zc_zy;
  673. TRUNCATE TABLE ey_zc_position;
  674. TRUNCATE TABLE ey_zczy_position;
  675. TRUNCATE TABLE ey_zczs_position;
  676. TRUNCATE TABLE ey_zcwf_position;
  677. TRUNCATE TABLE ey_zcwe_position;
  678. TRUNCATE TABLE ey_zcwd_position;
  679. TRUNCATE TABLE ey_zcdj_position;
  680. */
  681. public function exportData(){
  682. $fileTmpPath = './public/006.xlsx';
  683. $expType = PHPExcel_IOFactory::identify($fileTmpPath);
  684. $objReader = PHPExcel_IOFactory::createReader($expType);
  685. $objPHPExcel = $objReader->load($fileTmpPath);
  686. $sheet = $objPHPExcel->getSheet(0); //获取第一张表
  687. $highestRow = $sheet->getHighestRow(); //获取总行数
  688. $highestColumn = $sheet->getHighestColumn(); //XFD
  689. //var_dump($highestRow);die;
  690. //var_dump($highestColumn);die;
  691. //$highestRow = 2; //测试
  692. echo "<pre>";
  693. $rowData_1 = $sheet->rangeToArray('A' . 1 . ':' . $highestColumn . 1, NULL, TRUE, FALSE);
  694. //var_dump($rowData_1);
  695. // 循环读取每个单元格的内容。行数是以第1行为起始
  696. for ($row = 2; $row <= $highestRow; $row++) {
  697. $rowData = $sheet->rangeToArray('A' . $row . ':' . $highestColumn . $row, NULL, TRUE, FALSE);
  698. // 处理$rowData,例如保存到数据库等
  699. // ...
  700. //var_dump($rowData);
  701. //判断条件 丢弃
  702. $xlmcc = $rowData[0][4];
  703. if($xlmcc == '研究生' || $xlmcc == '双学位'){
  704. echo '忽略这个记录<br/>';
  705. }else {
  706. if(!empty($rowData[0][0])) {
  707. //处理职称名称 返回职称ID
  708. $aid = model('v1.Zc')->zcPos($rowData[0][0]);
  709. //申报等级
  710. $did = model('v1.Zc')->zcTypeAndDj($aid, $rowData[0][2]);
  711. //添加专业 - 具体专业
  712. $yids = model('v1.Zc')->zczyAdd($aid, $rowData);
  713. //添加专业绑定职称
  714. if (!empty($yids)) {
  715. model('v1.Zc')->bindZcZy($aid, $yids);
  716. }
  717. if (!empty($rowData[0][8])) {
  718. //添加证书 得到证书id
  719. $sid = model('v1.Zc')->ZsZcAdd($aid, $rowData[0][8]);
  720. //添加证书绑定职称
  721. $zids = [$sid];
  722. model('v1.Zc')->bingZs($aid, $zids);
  723. //证书绑定学历
  724. //博士,硕士,研究生,双学位,本科,大专,高技,中专
  725. model('v1.Zc')->zsBindXl($sid, $rowData);
  726. }
  727. //添加主规则 区域/申报等级/职称名称
  728. $gid = model('v1.Zc')->addZcwd($aid, $did, $rowData);
  729. //添加学历规则 学历/学历条件/毕业年限/年龄/专业要求/具体专业
  730. $xid = model('v1.Zc')->addZcXi($gid, $yids, $rowData);
  731. //添加证书规则 且还是或 存在疑问? 前置+具体要求
  732. if (!empty($rowData[0][8])) {
  733. $zid = model('v1.Zc')->addZsGz($gid, $xid, $sid, $rowData);
  734. }
  735. $title = $rowData[0][0] . '-' . $rowData[0][2] . '-' . $rowData[0][1] . '-' . $rowData[0][4];
  736. echo '已处理[' . $title . ']这个记录<br/>';
  737. }else{
  738. echo $row.'为空这个记录<br/>';
  739. }
  740. }
  741. }
  742. echo "</pre>";
  743. }
  744. /*
  745. * 验证重复的数据 证书和学历 的zhengshu 和 zhengshu2 两个字段的问题 导入的时候 以后要看下
  746. * /api/Diyajax/zsChongHandle
  747. */
  748. public function zsChongHandle(){
  749. $list = Db::name('zcwf_position')
  750. ->select();
  751. foreach ($list as $key => $item) {
  752. $zhengshu = str_replace('"', '', $item['zhengshu']);
  753. if(empty($zhengshu)){
  754. $zhengshu = "[]";
  755. }
  756. Db::name('zcwf_position')->where('id', $item['id'])->update(['zhengshu' => $zhengshu]);
  757. /*$oen = Db::name('zcwf_position')
  758. ->where([
  759. 'type' => $item['type'], //所属职称主规则id
  760. 'type_son' => $item['type_son'], //所属上级学历id
  761. 'is_zs' => 1,
  762. //'zhengshu' => json_encode([(int)$sid]),
  763. 'sjnx' => $item['sjnx'],
  764. ])->find();*/
  765. }
  766. }
  767. /*
  768. * 验证重复的数据 证书和学历 的zhengshu 和 zhengshu2 两个字段的问题 导入的时候 以后要看下
  769. * /api/Diyajax/zsChongHandle2
  770. */
  771. public function zsChongHandle2(){
  772. //$list = Db::name('zcwf_position')->select();
  773. //$oens = [];
  774. for ($i=1;$i<=500;$i++) {
  775. $item = Db::name('zcwf_position')
  776. ->where(['status' => 1,'id'=>$i])
  777. ->find();
  778. if(!empty($item)) {
  779. $oen = Db::name('zcwf_position')
  780. ->where([
  781. 'type' => $item['type'], //所属职称主规则id
  782. 'type_son' => $item['type_son'], //所属上级学历id
  783. 'is_zs' => 1,
  784. 'status' => 1,
  785. 'zhengshu' => $item['zhengshu'],
  786. 'sjnx' => $item['sjnx'],
  787. ])->where('id', '<>', $item['id'])->column('id');
  788. //$oens = array_merge($oen, $oens);
  789. Db::name('zcwf_position')->where('id', 'in', $oen)->update(['status' => 0,'is_del'=>1]);
  790. echo '---->' . json_encode($oen) . '-' . $item['id'] . '<br/>';
  791. }else{
  792. echo '----><br/>';
  793. }
  794. }
  795. }
  796. }