This commit is contained in:
weiz 2024-01-25 10:46:02 +08:00
parent 33fb157856
commit 48fd13c7b6

View File

@ -68,7 +68,7 @@ class BuildReportLists extends BaseAdminDataLists implements ListsSearchInterfac
$where[] = ['plan_id','in',$plan_ids]; $where[] = ['plan_id','in',$plan_ids];
} }
return BuildReport::where($this->searchWhere)->where($where) return BuildReport::where($this->searchWhere)->where($where)
->field(['id', 'report_code', 'plan_id', 'scene_file', 'report_workload', 'report_amount', 'remark', 'add_user']) ->field(['id', 'report_code', 'plan_id', 'scene_file', 'report_workload', 'report_amount', 'remark', 'add_user', 'create_time'])
->limit($this->limitOffset, $this->limitLength) ->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc']) ->order(['id' => 'desc'])
->select()->each(function($data){ ->select()->each(function($data){