Recruitment.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // | 免费声明 ( https://thinkadmin.top/disclaimer )
  11. // +----------------------------------------------------------------------
  12. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  13. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  14. // +----------------------------------------------------------------------
  15. namespace app\admin\controller;
  16. use app\data\controller\user\Admin;
  17. use app\data\model\DataCollectionLog;
  18. use app\data\model\DataRecruitment;
  19. use app\data\model\DataPoolTalent;
  20. use app\data\model\DataTeachingKnowledge;
  21. use app\data\model\DataUser;
  22. use app\data\model\DataZhicheng;
  23. use Carbon\Carbon;
  24. use think\admin\Controller;
  25. use app\data\model\SystemUser;
  26. use think\admin\service\AdminService;
  27. use think\Db;
  28. use think\db\Query;
  29. /**
  30. * 招聘信息列表
  31. * Class Recruitment
  32. * @package app\admin\controller
  33. */
  34. class Recruitment extends Controller
  35. {
  36. /**
  37. * 招聘信息管理
  38. * @auth true
  39. * @menu true
  40. */
  41. public function index(){
  42. if(AdminService::getUserId()==10000){
  43. $admin_id = [];
  44. }
  45. else{
  46. $admin_id['uid']=AdminService::getUserId();
  47. }
  48. $this->title='招聘信息列表';
  49. $name=input('title');
  50. DataRecruitment::mQuery()
  51. ->when($name,function (Query $query) use ($name) {
  52. $query->hasWhere('shipyard',function (Query $query) use ($name) {
  53. $query->whereLike('name',"%{$name}%");
  54. });
  55. })
  56. ->where($admin_id)
  57. ->where('is_del',1)
  58. ->with(['datauser','shipyard'])
  59. ->order('id','desc')
  60. ->layTable();
  61. }
  62. protected function _index_page_filter(&$data)
  63. {
  64. if(AdminService::getUserId()==10000){
  65. $admin_id = [];
  66. foreach ($data as $k => $v){
  67. $data[$k]['is_display'] = $v['uid'];
  68. }
  69. }else{
  70. foreach ($data as $k => $v){
  71. $data[$k]['is_display'] = 0;
  72. }
  73. // $admin_id['uid']=AdminService::getUserId();
  74. }
  75. // dump($data);die;
  76. }
  77. /**
  78. * 招聘信息添加
  79. * @auth true
  80. * @menu true
  81. */
  82. public function add(){
  83. DataRecruitment::mForm('form');
  84. }
  85. /**
  86. * 招聘信息编辑
  87. * @auth true
  88. * @menu true
  89. */
  90. public function edit(){
  91. DataRecruitment::mForm('form');
  92. }
  93. /**
  94. * 资源删除
  95. * @auth true
  96. * @menu true
  97. */
  98. public function remove(){
  99. $ids=$this->request->post('id');
  100. DataRecruitment::whereIn('id',$ids)->select()->each(function ($d){$d->delete();});
  101. $this->success('删除成功');
  102. }
  103. /**
  104. * 表单结果处理
  105. * @param boolean $result
  106. * @throws \think\db\exception\DataNotFoundException
  107. * @throws \think\db\exception\DbException
  108. * @throws \think\db\exception\ModelNotFoundException
  109. */
  110. protected function _form_result(bool $result)
  111. {
  112. if ($result && $this->request->isPost()) {
  113. // GoodsService::stock(input('code'));
  114. $this->success('恭喜,数据保存成功!', 'javascript:history.back()');
  115. }
  116. }
  117. public function _form_filter($vo){
  118. if ($this->request->isGet()) {
  119. }elseif ($this->request->isPost()){
  120. }
  121. }
  122. /**
  123. * 招聘信息查看
  124. * @auth true
  125. * @menu true
  126. */
  127. public function audit($id){
  128. $this->title='招聘信息查看';
  129. $row=DataRecruitment::mk()
  130. ->with(['datauser','shipyard'])
  131. ->findOrFail($id);
  132. if($this->request->isGet()){
  133. $this->assign('row',$row);
  134. $this->fetch();
  135. }else{
  136. if($row['audit']>1){
  137. $this->error('该记录已审核');
  138. }
  139. $data=$this->_vali([
  140. 'audit.require'=>'结果必须',
  141. 'audit.in:2,3'=>'结果有误',
  142. 'why.requireIf:audit,3'=>'原因必须',
  143. 'why.max:200'=>'原因有误',
  144. ]);
  145. $row['audit']=$data['audit'];
  146. $row['why']=$data['why']??'';
  147. $row['audit_at']=Carbon::now();
  148. $row->save();
  149. if ($data['audit']==2){
  150. DataUser::mk()->where('id',$row['uuid'])->update(['is_maintenance'=>1]);
  151. }
  152. $this->success('审核成功');
  153. }
  154. }
  155. public function collection(){
  156. $where = [];
  157. $data = input();
  158. if(isset($data['link_id'])){
  159. $where['a.link_id'] = $data['link_id'];
  160. }
  161. $this->title='感兴趣用户列表';
  162. $name=input('title');
  163. DataCollectionLog::mQuery()->alias('a')
  164. ->field('a.*,b.id uid,b.nickname,b.phone,b.base_sex')
  165. ->join('data_user b','b.id=a.uuid')
  166. ->where('a.type',3)->where($where)->order('a.id','desc')
  167. ->page();
  168. }
  169. }