|
...
|
...
|
@@ -281,6 +281,13 @@ class ProjectController extends BaseController |
|
|
|
if(isset($this->map['site_status'])){
|
|
|
|
$query = $query->where('gl_project.site_status',$this->map['site_status']);
|
|
|
|
}
|
|
|
|
if(isset($this->map['domain'])){
|
|
|
|
if($this->map['domain'] == 0){
|
|
|
|
$query = $query->where('gl_project_deploy_optimize.domain',null);
|
|
|
|
}else{
|
|
|
|
$query = $query->where('gl_project_deploy_optimize.domain',null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $query;
|
|
|
|
}
|
|
|
|
|
...
|
...
|
|