This commit is contained in:
weiz 2024-02-27 13:54:37 +08:00
parent 751dbcdf60
commit 53d2317c51

View File

@ -18,6 +18,7 @@ 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;
/**
* 岗位列表
@ -60,7 +61,9 @@ class JobsLists extends BaseAdminDataLists implements ListsSearchInterface
->limit($this->limitOffset, $this->limitLength)
->order(['sort' => 'desc', 'id' => 'desc'])
->select()->each(function($item){
$dept = Dept::where('id',$item['dept_id'])->findOrEmpty();
$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;
})