正在显示
1 个修改的文件
包含
4 行增加
和
0 行删除
| @@ -92,6 +92,7 @@ class ProjectController extends BaseController | @@ -92,6 +92,7 @@ class ProjectController extends BaseController | ||
| 92 | 'gl_project.is_upgrade AS is_upgrade', | 92 | 'gl_project.is_upgrade AS is_upgrade', |
| 93 | 'gl_project.created_at AS created_at', | 93 | 'gl_project.created_at AS created_at', |
| 94 | 'gl_project.cooperate_date AS cooperate_date', | 94 | 'gl_project.cooperate_date AS cooperate_date', |
| 95 | + 'gl_project.site_status AS site_status', | ||
| 95 | 'gl_project_online_check.id AS online_check_id', | 96 | 'gl_project_online_check.id AS online_check_id', |
| 96 | 'gl_project_online_check.question AS question', | 97 | 'gl_project_online_check.question AS question', |
| 97 | 'gl_project_online_check.optimist_status AS optimist_status', | 98 | 'gl_project_online_check.optimist_status AS optimist_status', |
| @@ -276,6 +277,9 @@ class ProjectController extends BaseController | @@ -276,6 +277,9 @@ class ProjectController extends BaseController | ||
| 276 | if(isset($this->map['plan'])){ | 277 | if(isset($this->map['plan'])){ |
| 277 | $query = $query->where('gl_project_deploy_build.plan',$this->map['plan']); | 278 | $query = $query->where('gl_project_deploy_build.plan',$this->map['plan']); |
| 278 | } | 279 | } |
| 280 | + if(isset($this->map['site_status'])){ | ||
| 281 | + $query = $query->where('gl_project.site_status',$this->map['site_status']); | ||
| 282 | + } | ||
| 279 | return $query; | 283 | return $query; |
| 280 | } | 284 | } |
| 281 | 285 |
-
请 注册 或 登录 后发表评论