作者 lyh

gx

... ... @@ -111,10 +111,9 @@ class RenewProjectController extends BaseController
if(!empty($this->map['title'])){
$this->map['title'] = ['like', '%'.$this->map['title'].'%'];
}
$lists = $project->where($this->map)->with('payment')->with('deploy_build')
$lists = $project->formatQuery($this->map)->with('payment')->with('deploy_build')
->with('deploy_optimize')->with('online_check')
->with('project_after')->paginate($this->row, ['*'], 'page', $this->page);
@file_put_contents(storage_path('logs/lyh_error.log'), var_export($this->map, true) . PHP_EOL, FILE_APPEND);
if(!empty($lists)){
$lists = $lists->toArray();
$manageModel = new Manage();
... ...