['create_user_id', 'company_id', 'company_type', 'status'], ]; } /** * @notes 获取任务公司排期列表 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author likeadmin * @date 2023/08/08 10:08 */ public function lists(): array { if(isset($params['company_id']) && $params['company_id']!=''){ $arr= Company::where('company_name','like','%'.$params['company_id'].'%')->column('id'); if($arr){ $where[]=['party_a|party_b','in',$arr]; } } if(isset($params['create_user_id']) && $params['create_user_id']!=''){ $arr= Admin::where('name','like','%'.$params['create_user_id'].'%')->column('id'); if($arr){ $where[]=['area_manager','in',$arr]; } } return TaskScheduling::where($this->searchWhere) ->with(['admin','company','company_type']) ->field(['id', 'create_user_id', 'company_id', 'company_type', 'status']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() ->toArray(); } /** * @notes 获取任务公司排期数量 * @return int * @author likeadmin * @date 2023/08/08 10:08 */ public function count(): int { return TaskScheduling::where($this->searchWhere)->count(); } }