['contract_type', 'contract_no', 'status'], '%like%' => ['company_id', 'party_a', 'party_b', 'area_manager'], ]; } /** * @notes 获取列表 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author likeadmin * @date 2023/07/18 14:28 */ public function lists(): array { return Contract::where($this->searchWhere)->with(['companyName','partyA','contractType']) ->field(['id', 'company_id', 'contract_type', 'contract_no', 'status', 'party_a', 'party_b', 'area_manager']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() ->toArray(); } /** * @notes 获取数量 * @return int * @author likeadmin * @date 2023/07/18 14:28 */ public function count(): int { return Contract::where($this->searchWhere)->count(); } }