更新细节

This commit is contained in:
yaooo 2023-12-19 16:25:46 +08:00
parent 79a975667c
commit 51a0557cdd

View File

@ -59,7 +59,8 @@ class BidBiddingDecisionLists extends BaseAdminDataLists implements ListsSearchI
->where($this->searchWhere)
->whereNull('bbd.delete_time')
->leftJoin('project p','p.id = bbd.project_id')
->field('bbd.*, p.name as project_name, p.project_code')
->leftJoin('custom ct','ct.id = p.custom_id')
->field('bbd.*, p.custom_id, p.name as project_name, p.project_code, ct.name as custom_name')
->limit($this->limitOffset, $this->limitLength)
->order(['bbd.id' => 'desc'])
->select()->each(function($item, $key){