91 lines
2.9 KiB
PHP
Executable File
91 lines
2.9 KiB
PHP
Executable File
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||
// +----------------------------------------------------------------------
|
||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||
// | 开源版本可自由商用,可去除界面版权logo
|
||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||
// | 访问官网:https://www.likeadmin.cn
|
||
// | likeadmin团队 版权所有 拥有最终解释权
|
||
// +----------------------------------------------------------------------
|
||
// | author: likeadminTeam
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\adminapi\lists\dept;
|
||
|
||
use app\adminapi\lists\BaseAdminDataLists;
|
||
use app\common\lists\ListsSearchInterface;
|
||
use app\common\model\dept\Dept;
|
||
use app\common\model\dept\Jobs;
|
||
use app\common\model\dept\Orgs;
|
||
|
||
/**
|
||
* 岗位列表
|
||
* Class JobsLists
|
||
* @package app\adminapi\lists\dept
|
||
*/
|
||
class JobsLists extends BaseAdminDataLists implements ListsSearchInterface
|
||
{
|
||
|
||
/**
|
||
* @notes 设置搜索条件
|
||
* @return \string[][]
|
||
* @author 段誉
|
||
* @date 2022/5/26 9:46
|
||
*/
|
||
public function setSearch(): array
|
||
{
|
||
return [
|
||
'%like%' => ['name','dept_name'],
|
||
'=' => ['status']
|
||
];
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取管理列表
|
||
* @return array
|
||
* @author heshihu
|
||
* @date 2022/2/21 17:11
|
||
*/
|
||
public function lists(): array
|
||
{
|
||
$params = $this->request->param();
|
||
$where = [];
|
||
if(isset($params['dept_name']) && $params['dept_name'] != ''){
|
||
$deps = Dept::where('name','like','%'.$params['dept_name'].'%')->column('id');
|
||
$where[] = ['dept_id','in',$deps];
|
||
}
|
||
return Jobs::where($this->searchWhere)->where($where)->field('id,dept_id,name,status,sort,create_time')
|
||
->limit($this->limitOffset, $this->limitLength)
|
||
->order(['sort' => 'desc', 'id' => 'desc'])
|
||
->select()->each(function($item){
|
||
$dept = Dept::field('name,org_id')->where('id',$item['dept_id'])->findOrEmpty();
|
||
$org = Orgs::field('name')->where('id',$dept['org_id'])->findOrEmpty();
|
||
$item['org_name'] = $org->isEmpty() ? '' : $org['name'];
|
||
$item['dept_name'] = $dept->isEmpty() ? '' : $dept['name'];
|
||
return $item;
|
||
})
|
||
->toArray();
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取数量
|
||
* @return int
|
||
* @author 段誉
|
||
* @date 2022/5/26 9:48
|
||
*/
|
||
public function count(): int
|
||
{
|
||
$params = $this->request->param();
|
||
$where = [];
|
||
if(isset($params['dept_name']) && $params['dept_name'] != ''){
|
||
$deps = Dept::where('name','like','%'.$params['dept_name'].'%')->column('id');
|
||
$where[] = ['dept_id','in',$deps];
|
||
}
|
||
return Jobs::where($this->searchWhere)->where($where)->count();
|
||
}
|
||
|
||
} |