No Description
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 26KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746
  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. if(!empty($param['id'])){
  252. $map_ids = Db::name('zc_zs')
  253. ->where('zc_id', $param['id'])
  254. ->where('is_del', 0)
  255. ->column('map_id');
  256. //调用等级
  257. $list = Db::name('zczs_position')
  258. ->where('id','in',$map_ids)
  259. ->where('is_del', 0)
  260. ->where('status', 1)
  261. ->select();
  262. //去掉证书绑定学历
  263. /*$new_list = [];
  264. foreach ($list as $k=>$v){
  265. if((int)$v['bdxl'] >= (int)$param['xl']){
  266. //保留
  267. $new_list[] = $v;
  268. }
  269. }*/
  270. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
  271. }else{
  272. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  273. }
  274. }
  275. /*
  276. * getZyList
  277. * /api/Diyajax/getZyList
  278. * 丢弃
  279. */
  280. public function getZyList()
  281. {
  282. $param = request()->param();
  283. $param['xlid'] = (int)$param['xlid'];
  284. $param['zcid'] = (int)$param['zcid'];
  285. if(!empty($param['xlid']) && !empty($param['zcid'])){
  286. $map_ids = Db::name('zc_zy')
  287. ->where('zc_id', $param['id'])
  288. ->where('is_del', 0)
  289. ->column('map_id');
  290. //调用等级
  291. $list = Db::name('zczy_position')
  292. ->where('id','in',$map_ids)
  293. ->where('is_del', 0)
  294. ->where('status', 1)
  295. ->select();
  296. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
  297. }else{
  298. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  299. }
  300. }
  301. /*
  302. * 后期再加令牌
  303. */
  304. public function getCode()
  305. {
  306. $param = request()->param();
  307. $mobile = $param['mobile'];
  308. if (empty($mobile)){
  309. respose(['code'=>0, 'msg'=>'手机号码不能为空', 'data'=>[]]);
  310. }
  311. if (!check_mobile($mobile)) {
  312. respose(['code'=>0, 'msg'=>'手机号码格式不正确', 'data'=>[]]);
  313. }
  314. /*是否允许再次发送*/
  315. $where = [
  316. 'mobile' => $mobile,
  317. 'source' => 6, //$scene
  318. 'status' => 1,
  319. 'is_use' => 0,
  320. 'add_time' => ['>', getTime() - 120]
  321. ];
  322. $Result = Db::name('sms_log')->where($where)->order('id desc')->count();
  323. if (!empty($Result) && false == config('sms_debug')){
  324. respose(['code'=>0, 'msg'=>'120秒内只能发送一次', 'data'=>[]]);
  325. }
  326. $Result = sendSms(1, $mobile, array('content' => mt_rand(1000, 9999)));
  327. if (intval($Result['status']) == 1) {
  328. //@unlink($session_file);
  329. //$this->success('发送成功!');
  330. respose(['code'=>1, 'msg'=>'发送成功', 'data'=>[]]);
  331. } else {
  332. //$this->error($Result['msg']);
  333. respose(['code'=>0, 'msg'=>$Result['msg'], 'data'=>[]]);
  334. }
  335. }
  336. /*
  337. * 处理表单提交数据
  338. */
  339. public function insData()
  340. {
  341. $param = request()->param();
  342. $mobile = $param['sjhm'];
  343. if (empty($mobile)){
  344. respose(['code'=>0, 'msg'=>'手机号码不能为空', 'data'=>[]]);
  345. }
  346. if (!check_mobile($mobile)) {
  347. respose(['code'=>0, 'msg'=>'手机号码格式不正确', 'data'=>[]]);
  348. }
  349. //验证码校验 $param['yzm']
  350. //判断验证码是否存在并且是否可用
  351. if($param['yzm'] == '0000'){
  352. //免验证
  353. }else {
  354. $RecordWhere = [
  355. 'mobile' => trim($param['sjhm']),
  356. 'code' => trim($param['yzm']),
  357. 'lang' => $this->home_lang
  358. ];
  359. $RecordData = Db::name('sms_log')->where($RecordWhere)->field('is_use, add_time')->order('id desc')->find();
  360. if (!empty($RecordData)) {
  361. // 验证码存在
  362. $time = getTime();
  363. $RecordData['add_time'] += Config::get('global.mobile_default_time_out');
  364. if (1 == $RecordData['is_use'] || $RecordData['add_time'] <= $time) {
  365. respose(['code' => 0, 'msg' => '手机验证码已被使用或超时,请重新发送!', 'data' => []]);
  366. } else {
  367. // 处理手机验证码
  368. $RecordWhere = [
  369. 'source' => 1,
  370. 'mobile' => $param['sjhm'],
  371. 'is_use' => 0,
  372. 'lang' => $this->home_lang
  373. ];
  374. // 更新数据
  375. $RecordData = [
  376. 'is_use' => 1,
  377. 'update_time' => $time
  378. ];
  379. Db::name('sms_log')->where($RecordWhere)->update($RecordData);
  380. }
  381. } else {
  382. respose(['code' => 0, 'msg' => '手机验证码不正确,请重新输入!', 'data' => []]);
  383. }
  384. }
  385. $param['zhengshu_val'] = substr($param['zhengshu_val'], 0, -1);
  386. $param['zhengshu'] = explode(',',$param['zhengshu_val']);
  387. //翻译冗余字段
  388. $xl_arr = ['','中专','高技','大专','本科','硕士','博士'];
  389. $xxlx_arr = ['','全日制','非全日制'];
  390. $sbzy_val = Db::name('zc_position')->where('id',$param['sbzy'])->value('title');
  391. $name = [
  392. 1000000001=>'技术员职称',
  393. 1000000002=>'助理职称',
  394. 1000000003=>'中级职称',
  395. 1000000004=>'副高级职称',
  396. 1000000005=>'正高级职称'
  397. ];
  398. $ids = [
  399. 1000000001,
  400. 1000000002,
  401. 1000000003,
  402. 1000000004,
  403. 1000000005
  404. ];
  405. if(in_array((int)$param['sbdj'],$ids)){
  406. $sbdj_val = $name[(int)$param['sbdj']];
  407. }else{
  408. $sbdj_val = Db::name('zcdj_position')->where('id',$param['sbdj'])->value('title');
  409. }
  410. $zs_list = Db::name('zczs_position')->field('id,title')->where('id','in',$param['zhengshu'])->select();
  411. $zs_str = '';
  412. foreach ($zs_list as $k => $v){
  413. $key = array_search($v['id'],$param['zhengshu']);
  414. $zs_str .= $v['title'].'('.$param['zsnx'][$key].'年),';
  415. }
  416. $zy_list = Db::name('zczy_position')->field('id,title')->where('id','in',$param['zy'])->select();
  417. $zy_str = '';
  418. foreach ($zy_list as $k => $v){
  419. $zy_str .= $v['title'].',';
  420. }
  421. $szcs_str = Db::name('citysite')
  422. ->where('id', $param['szcs'])
  423. ->value('name');
  424. $szsf_str = Db::name('citysite')
  425. ->where('id', $param['szsf'])
  426. ->value('name');
  427. $zcson_str = Db::name('zcson_position')
  428. ->where('id', $param['sbzyson'])
  429. ->value('title');
  430. if(empty($zcson_str)){
  431. $zcson_str = '默认';
  432. }
  433. $json = [
  434. 'xl' => $xl_arr[$param['xl']], //学历
  435. 'sbzy' => $sbzy_val, //申报专业
  436. 'sbdj' => $sbdj_val, //申报等级
  437. 'xxlx' => $xxlx_arr[$param['xxlx']], //学校类型
  438. 'zs' => $zs_str, //证书
  439. 'zy' => $zy_str, //专业
  440. 'szsf' => $szsf_str, //省份
  441. 'szcs' => $szcs_str, //城市
  442. 'zcson' => $zcson_str, //申报专业
  443. ];
  444. $json_str = json_encode($json,JSON_UNESCAPED_UNICODE);
  445. //{"xl":"中专","sbzy":"建筑职称","sbdj":"初级","xxlx":"全日制","zs":"建筑一级证书(1年),","zy":"计算机网络技术,","szsf":"广东","szcs":"广州"}
  446. //插入数据
  447. $insertData = [
  448. 'yxdq' => $param['yxdq'], //预选地区
  449. 'sbzy' => $param['sbzy'], //申报专业
  450. 'sbdj' => $param['sbdj'], //申报等级
  451. 'bysj' => $param['bysj2'], //毕业时间
  452. 'nl' => $param['nl'], //年龄
  453. 'xl' => $param['xl'], //学历
  454. 'xxlx' => $param['xxlx'], //学校类型
  455. 'sjhm' => $param['sjhm'], //手机号码
  456. 'ch' => $param['ch'], //称呼
  457. 'zs' => json_encode($param['zhengshu'],JSON_UNESCAPED_UNICODE), //证书 //checkbox $param['zs'] 提交不完全
  458. 'zsnx' => json_encode($param['zsnx'],JSON_UNESCAPED_UNICODE), //证书年限
  459. 'zy' => json_encode($param['zy'],JSON_UNESCAPED_UNICODE), //毕业专业
  460. 'addtime' => getTime(),
  461. 'updatetime' => getTime(),
  462. 'is_del' => 0,
  463. 'status' => 1,
  464. 'szcs' => $param['szcs'], //城市
  465. 'szsf' => $param['szsf'], //省份
  466. 'extend' => $json_str,
  467. 'byzy_is' => $param['byzy-is'],
  468. 'byzy_name' => $param['byzy-name'],
  469. 'sbzyson' => $param['sbzyson'],
  470. ];
  471. $res_id = Db::name('zc_form')->insertGetId($insertData);
  472. if($res_id > 0){
  473. $str = md5($res_id.time());
  474. $run = Db::name('zc_form')->where('id', $res_id)->update(['code' => $str]);
  475. if($run === 1){
  476. respose(['code'=>1, 'msg'=>'提交成功', 'data'=>['code'=>$str,'mobile'=>$param['sjhm']]]);
  477. }
  478. }
  479. respose(['code'=>0, 'msg'=>'提交失败', 'data'=>[]]);
  480. }
  481. /*
  482. * 验证码
  483. * 这里不记录查询记录
  484. */
  485. public function cxCode()
  486. {
  487. $param = request()->param();
  488. $mobile = $param['mobile'];
  489. if (empty($mobile)){
  490. respose(['code'=>0, 'msg'=>'手机号码不能为空', 'data'=>[]]);
  491. }
  492. if (!check_mobile($mobile)) {
  493. respose(['code'=>0, 'msg'=>'手机号码格式不正确', 'data'=>[]]);
  494. }
  495. if (empty($param['code'])){
  496. respose(['code'=>0, 'msg'=>'验证码不能为空', 'data'=>[]]);
  497. }
  498. if($param['code'] == '0000'){
  499. //免验证
  500. }else {
  501. $RecordWhere = [
  502. 'mobile' => trim($param['mobile']),
  503. 'code' => trim($param['code']),
  504. 'lang' => $this->home_lang
  505. ];
  506. $RecordData = Db::name('sms_log')->where($RecordWhere)->field('is_use, add_time')->order('id desc')->find();
  507. if (!empty($RecordData)) {
  508. // 验证码存在
  509. $time = getTime();
  510. $RecordData['add_time'] += Config::get('global.mobile_default_time_out');
  511. if (1 == $RecordData['is_use'] || $RecordData['add_time'] <= $time) {
  512. respose(['code' => 0, 'msg' => '手机验证码已被使用或超时,请重新发送!', 'data' => []]);
  513. } else {
  514. // 处理手机验证码
  515. $RecordWhere = [
  516. 'source' => 1,
  517. 'mobile' => $param['mobile'],
  518. 'is_use' => 0,
  519. 'lang' => $this->home_lang
  520. ];
  521. // 更新数据
  522. $RecordData = [
  523. 'is_use' => 1,
  524. 'update_time' => $time
  525. ];
  526. Db::name('sms_log')->where($RecordWhere)->update($RecordData);
  527. }
  528. } else {
  529. respose(['code' => 0, 'msg' => '手机验证码不正确,请重新输入!', 'data' => []]);
  530. }
  531. }
  532. respose(['code'=>1, 'msg'=>'验证通过,查询中...', 'data'=>[]]);
  533. }
  534. /*
  535. * 获取城市1
  536. */
  537. public function getCsList(){
  538. $param = request()->param();
  539. $param['id'] = (int)$param['id'];
  540. if(!empty($param['id'])){
  541. $list = Db::name('citysite')
  542. ->field('id,name')
  543. ->where('parent_id', $param['id'])
  544. //->where('status',1)
  545. //->where('is_open',1)
  546. ->select();
  547. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
  548. }else{
  549. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  550. }
  551. }
  552. public function kjForm(){
  553. $param = request()->param();
  554. $param['form_id'] = (int)$param['form_id'];
  555. $one = Db::name('zc_form')->where('id', $param['form_id'])->find();
  556. if((int)$one['pccs'] === 0){
  557. //未更新
  558. if(!empty($param['form_id'])){
  559. $pccs = Db::name('zc_form')->where(['sjhm'=>$one['sjhm'],'is_del'=>0])->count();
  560. $data = [
  561. 'pccs' => (int)$pccs + 1,
  562. 'is_tg' => (int)$param['is_tg'],
  563. 'jjfa' => $param['jjfa'],
  564. 'xy_info' => $param['xy_info'],
  565. ];
  566. //更新表单数据
  567. $list = Db::name('zc_form')
  568. ->where('id', $param['form_id'])
  569. ->update($data);
  570. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>[]]);
  571. }else{
  572. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  573. }
  574. }else{
  575. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  576. }
  577. }
  578. public function getFormList()
  579. {
  580. $list = Db::name('zc_form')
  581. //->where('pccs', 1) //同一号码 只调用一次
  582. ->field('id,ch,sjhm,is_tg,jjfa,extend')
  583. ->where('is_del', 0)
  584. ->where('pccs', '>',0)
  585. ->order('updatetime desc')
  586. //->fetchSql(true)
  587. ->limit(20)
  588. ->select();
  589. //var_dump($list);
  590. $is_tg_str = ['条件不符','符合条件'];
  591. foreach ($list as $key => $item) {
  592. $item['is_tg_n'] = $item['is_tg'];
  593. $extend_info = json_decode($item['extend'],true);
  594. $item['sbxx'] = $extend_info['sbzy'].$extend_info['sbdj'];
  595. $item['sjhm'] = preg_replace('/(\d{3})\d{4}(\d{4})/', '$1****$2', $item['sjhm']);
  596. $item['is_tg'] = $is_tg_str[$item['is_tg']];
  597. $list[$key] = $item;
  598. }
  599. $zrs = $list[0]['id'] + 1000;
  600. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list,'zrs'=>$zrs]);
  601. }
  602. /*
  603. * 导入数据处理
  604. * /api/Diyajax/exportData
  605. * https://www.zc10000.com/api/Diyajax/exportData
  606. *
  607. * 清除sql命令
  608. *
  609. TRUNCATE TABLE ey_zc_zs;
  610. TRUNCATE TABLE ey_zc_zy;
  611. TRUNCATE TABLE ey_zc_position;
  612. TRUNCATE TABLE ey_zczy_position;
  613. TRUNCATE TABLE ey_zczs_position;
  614. TRUNCATE TABLE ey_zcwf_position;
  615. TRUNCATE TABLE ey_zcwe_position;
  616. TRUNCATE TABLE ey_zcwd_position;
  617. TRUNCATE TABLE ey_zcdj_position;
  618. */
  619. public function exportData(){
  620. $fileTmpPath = './public/006.xlsx';
  621. $expType = PHPExcel_IOFactory::identify($fileTmpPath);
  622. $objReader = PHPExcel_IOFactory::createReader($expType);
  623. $objPHPExcel = $objReader->load($fileTmpPath);
  624. $sheet = $objPHPExcel->getSheet(0); //获取第一张表
  625. $highestRow = $sheet->getHighestRow(); //获取总行数
  626. $highestColumn = $sheet->getHighestColumn(); //XFD
  627. //var_dump($highestRow);die;
  628. //var_dump($highestColumn);die;
  629. //$highestRow = 2; //测试
  630. echo "<pre>";
  631. $rowData_1 = $sheet->rangeToArray('A' . 1 . ':' . $highestColumn . 1, NULL, TRUE, FALSE);
  632. //var_dump($rowData_1);
  633. // 循环读取每个单元格的内容。行数是以第1行为起始
  634. for ($row = 2; $row <= $highestRow; $row++) {
  635. $rowData = $sheet->rangeToArray('A' . $row . ':' . $highestColumn . $row, NULL, TRUE, FALSE);
  636. // 处理$rowData,例如保存到数据库等
  637. // ...
  638. //var_dump($rowData);
  639. //判断条件 丢弃
  640. $xlmcc = $rowData[0][4];
  641. if($xlmcc == '研究生' || $xlmcc == '双学位'){
  642. echo '忽略这个记录<br/>';
  643. }else {
  644. if(!empty($rowData[0][0])) {
  645. //处理职称名称 返回职称ID
  646. $aid = model('v1.Zc')->zcPos($rowData[0][0]);
  647. //申报等级
  648. $did = model('v1.Zc')->zcTypeAndDj($aid, $rowData[0][2]);
  649. //添加专业 - 具体专业
  650. $yids = model('v1.Zc')->zczyAdd($aid, $rowData);
  651. //添加专业绑定职称
  652. if (!empty($yids)) {
  653. model('v1.Zc')->bindZcZy($aid, $yids);
  654. }
  655. if (!empty($rowData[0][8])) {
  656. //添加证书 得到证书id
  657. $sid = model('v1.Zc')->ZsZcAdd($aid, $rowData[0][8]);
  658. //添加证书绑定职称
  659. $zids = [$sid];
  660. model('v1.Zc')->bingZs($aid, $zids);
  661. //证书绑定学历
  662. //博士,硕士,研究生,双学位,本科,大专,高技,中专
  663. model('v1.Zc')->zsBindXl($sid, $rowData);
  664. }
  665. //添加主规则 区域/申报等级/职称名称
  666. $gid = model('v1.Zc')->addZcwd($aid, $did, $rowData);
  667. //添加学历规则 学历/学历条件/毕业年限/年龄/专业要求/具体专业
  668. $xid = model('v1.Zc')->addZcXi($gid, $yids, $rowData);
  669. //添加证书规则 且还是或 存在疑问? 前置+具体要求
  670. if (!empty($rowData[0][8])) {
  671. $zid = model('v1.Zc')->addZsGz($gid, $xid, $sid, $rowData);
  672. }
  673. $title = $rowData[0][0] . '-' . $rowData[0][2] . '-' . $rowData[0][1] . '-' . $rowData[0][4];
  674. echo '已处理[' . $title . ']这个记录<br/>';
  675. }else{
  676. echo $row.'为空这个记录<br/>';
  677. }
  678. }
  679. }
  680. echo "</pre>";
  681. }
  682. }