|
...
|
...
|
@@ -252,8 +252,8 @@ class InquiryInfoLogic extends BaseLogic |
|
|
|
$data[] = $v['project_id'];
|
|
|
|
}
|
|
|
|
//根据项目id获取域名
|
|
|
|
$projectBuildModel = new DeployBuild();
|
|
|
|
$lists = $projectBuildModel->select('test_domain')->whereIn('project_id', $data)->get()->toArray();
|
|
|
|
$lists = DB::table('gl_project_deploy_build')
|
|
|
|
->select('test_domain')->whereIn('project_id', $data)->get()->toArray();
|
|
|
|
}
|
|
|
|
return $this->success($lists);
|
|
|
|
}
|
...
|
...
|
|