Recruitment.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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. // dump($data);die;
  65. }
  66. /**
  67. * 招聘信息添加
  68. * @auth true
  69. * @menu true
  70. */
  71. public function add(){
  72. DataRecruitment::mForm('form');
  73. }
  74. /**
  75. * 招聘信息编辑
  76. * @auth true
  77. * @menu true
  78. */
  79. public function edit(){
  80. DataRecruitment::mForm('form');
  81. }
  82. /**
  83. * 表单结果处理
  84. * @param boolean $result
  85. * @throws \think\db\exception\DataNotFoundException
  86. * @throws \think\db\exception\DbException
  87. * @throws \think\db\exception\ModelNotFoundException
  88. */
  89. protected function _form_result(bool $result)
  90. {
  91. if ($result && $this->request->isPost()) {
  92. // GoodsService::stock(input('code'));
  93. $this->success('恭喜,数据保存成功!', 'javascript:history.back()');
  94. }
  95. }
  96. public function _form_filter($vo){
  97. if ($this->request->isGet()) {
  98. }elseif ($this->request->isPost()){
  99. }
  100. }
  101. /**
  102. * 招聘信息查看
  103. * @auth true
  104. * @menu true
  105. */
  106. public function audit($id){
  107. $this->title='招聘信息查看';
  108. $row=DataRecruitment::mk()
  109. ->with(['datauser','shipyard'])
  110. ->findOrFail($id);
  111. if($this->request->isGet()){
  112. $this->assign('row',$row);
  113. $this->fetch();
  114. }else{
  115. if($row['audit']>1){
  116. $this->error('该记录已审核');
  117. }
  118. $data=$this->_vali([
  119. 'audit.require'=>'结果必须',
  120. 'audit.in:2,3'=>'结果有误',
  121. 'why.requireIf:audit,3'=>'原因必须',
  122. 'why.max:200'=>'原因有误',
  123. ]);
  124. $row['audit']=$data['audit'];
  125. $row['why']=$data['why']??'';
  126. $row['audit_at']=Carbon::now();
  127. $row->save();
  128. if ($data['audit']==2){
  129. DataUser::mk()->where('id',$row['uuid'])->update(['is_maintenance'=>1]);
  130. }
  131. $this->success('审核成功');
  132. }
  133. }
  134. public function collection(){
  135. $where = [];
  136. $data = input();
  137. if(isset($data['link_id'])){
  138. $where['a.link_id'] = $data['link_id'];
  139. }
  140. $this->title='感兴趣用户列表';
  141. $name=input('title');
  142. DataCollectionLog::mQuery()->alias('a')
  143. ->field('a.*,b.id uid,b.nickname,b.phone,b.base_sex')
  144. ->join('data_user b','b.id=a.uuid')
  145. ->where('a.type',3)->where($where)->order('a.id','desc')
  146. ->page();
  147. }
  148. }