123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkAdmin
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: https://thinkadmin.top
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // | 免费声明 ( https://thinkadmin.top/disclaimer )
- // +----------------------------------------------------------------------
- // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
- // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
- // +----------------------------------------------------------------------
- namespace app\admin\controller;
- use app\data\controller\user\Admin;
- use app\data\model\DataCollectionLog;
- use app\data\model\DataRecruitment;
- use app\data\model\DataPoolTalent;
- use app\data\model\DataTeachingKnowledge;
- use app\data\model\DataUser;
- use app\data\model\DataZhicheng;
- use Carbon\Carbon;
- use think\admin\Controller;
- use app\data\model\SystemUser;
- use think\admin\service\AdminService;
- use think\Db;
- use think\db\Query;
- /**
- * 招聘信息列表
- * Class Recruitment
- * @package app\admin\controller
- */
- class Recruitment extends Controller
- {
- /**
- * 招聘信息管理
- * @auth true
- * @menu true
- */
- public function index(){
- if(AdminService::getUserId()==10000){
- $admin_id = [];
- }
- else{
- $admin_id['uid']=AdminService::getUserId();
- }
- $this->title='招聘信息列表';
- $name=input('title');
- DataRecruitment::mQuery()
- ->when($name,function (Query $query) use ($name) {
- $query->hasWhere('shipyard',function (Query $query) use ($name) {
- $query->whereLike('name',"%{$name}%");
- });
- })
- ->where($admin_id)
- ->where('is_del',1)
- ->with(['datauser','shipyard'])
- ->order('id','desc')
- ->layTable();
- }
- protected function _index_page_filter(&$data)
- {
- if(AdminService::getUserId()==10000){
- $admin_id = [];
- foreach ($data as $k => $v){
- $data[$k]['is_display'] = $v['uid'];
- }
- }else{
- foreach ($data as $k => $v){
- $data[$k]['is_display'] = 0;
- }
- // $admin_id['uid']=AdminService::getUserId();
- }
- // dump($data);die;
- }
- /**
- * 招聘信息添加
- * @auth true
- * @menu true
- */
- public function add(){
- DataRecruitment::mForm('form');
- }
- /**
- * 招聘信息编辑
- * @auth true
- * @menu true
- */
- public function edit(){
- DataRecruitment::mForm('form');
- }
- /**
- * 资源删除
- * @auth true
- * @menu true
- */
- public function remove(){
- $ids=$this->request->post('id');
- DataRecruitment::whereIn('id',$ids)->select()->each(function ($d){$d->delete();});
- $this->success('删除成功');
- }
- /**
- * 表单结果处理
- * @param boolean $result
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- protected function _form_result(bool $result)
- {
- if ($result && $this->request->isPost()) {
- // GoodsService::stock(input('code'));
- $this->success('恭喜,数据保存成功!', 'javascript:history.back()');
- }
- }
- public function _form_filter($vo){
- if ($this->request->isGet()) {
- }elseif ($this->request->isPost()){
- }
- }
- /**
- * 招聘信息查看
- * @auth true
- * @menu true
- */
- public function audit($id){
- $this->title='招聘信息查看';
- $row=DataRecruitment::mk()
- ->with(['datauser','shipyard'])
- ->findOrFail($id);
- if($this->request->isGet()){
- $this->assign('row',$row);
- $this->fetch();
- }else{
- if($row['audit']>1){
- $this->error('该记录已审核');
- }
- $data=$this->_vali([
- 'audit.require'=>'结果必须',
- 'audit.in:2,3'=>'结果有误',
- 'why.requireIf:audit,3'=>'原因必须',
- 'why.max:200'=>'原因有误',
- ]);
- $row['audit']=$data['audit'];
- $row['why']=$data['why']??'';
- $row['audit_at']=Carbon::now();
- $row->save();
- if ($data['audit']==2){
- DataUser::mk()->where('id',$row['uuid'])->update(['is_maintenance'=>1]);
- }
- $this->success('审核成功');
- }
- }
- public function collection(){
- $where = [];
- $data = input();
- if(isset($data['link_id'])){
- $where['a.link_id'] = $data['link_id'];
- }
- $this->title='感兴趣用户列表';
- $name=input('title');
- DataCollectionLog::mQuery()->alias('a')
- ->field('a.*,b.id uid,b.nickname,b.phone,b.base_sex')
- ->join('data_user b','b.id=a.uuid')
- ->where('a.type',3)->where($where)->order('a.id','desc')
- ->page();
- }
- }
|