Recruit.php 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. <?php
  2. namespace app\operate\controller;
  3. use app\common\model\ChinaArea;
  4. use app\common\model\PlatformSwitch;
  5. use app\common\model\User;
  6. use library\Controller;
  7. use think\Db;
  8. /**
  9. * 招聘
  10. * Class Activity
  11. * @package app\operate\controller
  12. */
  13. class Recruit extends Controller
  14. {
  15. protected $table = 'Recruit';
  16. /**
  17. * 列表
  18. * @auth true
  19. * @menu true
  20. * @throws \think\Exception
  21. * @throws \think\db\exception\DataNotFoundException
  22. * @throws \think\db\exception\ModelNotFoundException
  23. * @throws \think\exception\DbException
  24. * @throws \think\exception\PDOException
  25. */
  26. public function index()
  27. {
  28. $this->title = '列表';
  29. $where = [];
  30. $where[] = ['f.is_deleted','=',0];
  31. if($title = input('title')) $where[] = ['f.title','like','%'.$title.'%'];
  32. $query = $this->_query($this->table)->alias('f')
  33. ->field('f.*')
  34. ->where($where)
  35. ->order('sort desc,f.id desc ')->page();
  36. }
  37. /**
  38. * 添加
  39. * @auth true
  40. * @menu true
  41. * @throws \think\Exception
  42. * @throws \think\db\exception\DataNotFoundException
  43. * @throws \think\db\exception\ModelNotFoundException
  44. * @throws \think\exception\DbException
  45. * @throws \think\exception\PDOException
  46. */
  47. public function add()
  48. {
  49. $this->title = '添加';
  50. $this->_form($this->table, 'form');
  51. }
  52. /**
  53. * 编辑
  54. * @auth true
  55. * @menu true
  56. * @throws \think\Exception
  57. * @throws \think\db\exception\DataNotFoundException
  58. * @throws \think\db\exception\ModelNotFoundException
  59. * @throws \think\exception\DbException
  60. * @throws \think\exception\PDOException
  61. */
  62. public function edit()
  63. {
  64. $this->title = '编辑';
  65. if(input('test'))
  66. {
  67. $this->_form($this->table, 'form3');
  68. }else{
  69. $this->_form($this->table, 'form');
  70. }
  71. }
  72. /**
  73. * 删除
  74. * @auth true
  75. * @throws \think\Exception
  76. * @throws \think\exception\PDOException
  77. */
  78. public function del()
  79. {
  80. \app\common\model\Recruit::where('id',input('id'))->update(['is_deleted'=>1]);
  81. \app\common\model\Recruit::esAdd(input('id'));
  82. \app\common\model\TopSearch::saveData(input('id'),'recruit');
  83. $this->success('操作成功');
  84. }
  85. /**
  86. * 删除
  87. * @auth true
  88. * @throws \think\Exception
  89. * @throws \think\exception\PDOException
  90. */
  91. public function remove()
  92. {
  93. $ids = input('id');
  94. foreach (explode(',',$ids) as $id) {
  95. \app\common\model\Recruit::where('id',$id)->update(['is_deleted'=>1]);
  96. \app\common\model\Recruit::esAdd($id);
  97. \app\common\model\TopSearch::saveData($id,'recruit');
  98. }
  99. $this->success('已删除!');
  100. }
  101. /**
  102. * 表单数据处理
  103. * @param array $data
  104. */
  105. protected function _form_filter(&$data)
  106. {
  107. // if($this->request->isPost()) $this->error('页面调试中');
  108. $this->education = ['不限','高中及以上','专科及以上','本科及以上','研究生及以上'];
  109. $all_area = $all_area = ChinaArea::where('level','<=',3)->select();
  110. $this->all_area = make_tree($all_area);
  111. $all_cate = \app\common\model\RecruitCate::where(['is_deleted'=>0])->order('sort desc ,id desc')->select();
  112. $this->cate_tree = make_tree($all_cate);
  113. if ($this->request->isGet() && $this->request->action() == 'add') {
  114. $this->isAddMode = 1;
  115. $this->ladder = [];
  116. }
  117. if ($this->request->isGet() && $this->request->action() == 'edit') {
  118. $this->isAddMode = 0;
  119. $this->ladder = isset_full($data,'ladder') ? json_decode($data['ladder'],true):[];
  120. }
  121. if($this->request->isGet()) {
  122. $third_classify = input('third_classify');
  123. if($third_classify) {
  124. if($third_classify) $data['third_classify'] = $third_classify;
  125. $third_info = \app\common\model\RecruitCate::where('id',$third_classify)->find()->toArray();
  126. if($third_classify) $data['second_classify'] = $third_info['pid'];
  127. $data['first_classify'] = \app\common\model\RecruitCate::where('id',$data['second_classify'])->value('pid');
  128. }
  129. }
  130. if($this->request->isPost())
  131. {
  132. list($post,$ladder_data) = [$this->request->post(),[]];
  133. if(!$data['longitude'] || !$data['latitude']) $this->error('请选择地图坐标');
  134. if(!$data['release_time']) $data['release_time'] = date("Y-m-d H:i:s");
  135. if($data['hot_num'] != $data['hot_num_old']) $data['hot_time'] = date("Y-m-d H:i:s");
  136. if(!empty($post['user_phone'])) {
  137. $user_id = User::where('phone|email',$post['user_phone'])->value('id');
  138. if(!$user_id) $this->error('账号未注册');
  139. $data['user_id'] = $user_id;
  140. }else{
  141. $data['user_id'] = '';
  142. }
  143. //定时热搜
  144. if(!$post['hot_num']){
  145. $post['hot_num'] = 0;
  146. }
  147. if(isset($post['id'])){
  148. $info = \app\common\model\Recruit::where('id',$data['id'])->find();
  149. if(($post['regular_hot_end_time'] && $post['hot_target_num'] && $info['regular_hot_end_time'] != $post['regular_hot_end_time']) || ($info['hot_num'] != $post['hot_num'] && $post['regular_hot_end_time'] && $post['hot_target_num'])){
  150. $data['regular_hot_start_time'] = date("Y-m-d H:i:s");
  151. $startdate = strtotime($data['regular_hot_start_time']);
  152. $enddate = strtotime($post['regular_hot_end_time']);
  153. $diff_seconds = ($enddate-$startdate)/60;
  154. $min_num = ceil($diff_seconds/10);
  155. $hot_num = $post['hot_target_num'] - $post['hot_num'];
  156. $num = ceil($hot_num/$min_num);
  157. if($num < 0){
  158. $num = 0;
  159. }
  160. $data['regular_num'] = $num;
  161. }
  162. }else{
  163. if($post['regular_hot_end_time'] && $post['hot_target_num']){
  164. $data['regular_hot_start_time'] = date("Y-m-d H:i:s");
  165. $startdate = strtotime($data['regular_hot_start_time']);
  166. $enddate = strtotime($post['regular_hot_end_time']);
  167. $diff_seconds = ($enddate-$startdate)/60;
  168. $min_num = ceil($diff_seconds/10);
  169. $hot_num = $post['hot_target_num'] - $post['hot_num'];
  170. $num = ceil($hot_num/$min_num);
  171. if($num < 0){
  172. $num = 0;
  173. }
  174. $data['regular_num'] = $num;
  175. }
  176. }
  177. //定时热搜end
  178. }
  179. }
  180. protected function _form_result(&$data)
  181. {
  182. \app\common\model\Recruit::esAdd($data);
  183. \app\common\model\TopSearch::saveData($data,'recruit');
  184. if($this->request->action() == 'add' ||$this->request->action() == 'edit' ){
  185. if($this->request->post('third_classify')){
  186. $third_title = \app\common\model\RecruitCate::where('id',$this->request->post('third_classify'))->value('title');
  187. PlatformSwitch::followMsg(6,$this->request->post('third_classify'),$third_title,$this->request->post('title'),$data);
  188. }
  189. }
  190. $this->success('操作成功', 'javascript:history.back()');
  191. }
  192. /**
  193. * 上架
  194. * @auth true
  195. * @menu true
  196. * @throws \think\Exception
  197. * @throws \think\db\exception\DataNotFoundException
  198. * @throws \think\db\exception\ModelNotFoundException
  199. * @throws \think\exception\DbException
  200. * @throws \think\exception\PDOException
  201. */
  202. public function up()
  203. {
  204. \app\common\model\Recruit::where('id',input('id'))->update(['status'=>1]);
  205. \app\common\model\Recruit::esAdd(input('id'));
  206. \app\common\model\TopSearch::saveData(input('id'),'recruit');
  207. $this->success('操作成功');
  208. }
  209. /**
  210. * 取消
  211. * @auth true
  212. * @menu true
  213. * @throws \think\Exception
  214. * @throws \think\db\exception\DataNotFoundException
  215. * @throws \think\db\exception\ModelNotFoundException
  216. * @throws \think\exception\DbException
  217. * @throws \think\exception\PDOException
  218. */
  219. public function down()
  220. {
  221. \app\common\model\Recruit::where('id',input('id'))->update(['status'=>0]);
  222. \app\common\model\Recruit::esAdd(input('id'));
  223. \app\common\model\TopSearch::saveData(input('id'),'recruit');
  224. $this->success('操作成功');
  225. }
  226. }