$this->userId, 'approval'=>1,//派单的时候默认审核了 'work_status'=>1, ]; $list = ServiceWork::where($where) ->field(['id', 'work_sn', 'address', 'title', 'work_status', 'service_status','work_pay_status', 'appointment_time','receive_time','base_service_fee','service_fee']) ->append(['work_status_text','service_status_text']) ->limit($this->limitOffset, $this->limitLength) ->order(['appointment_time' => 'asc'])//上门时间排序 ->select() ->toArray(); $this->count = ServiceWork::where($where)->count(); return $list; } /** * @notes 获取数量 * @return int * @author whitef * @date 2024/07/10 15:06 */ public function count(): int { return $this->count; } }