作者 lyh
@@ -160,6 +160,7 @@ class DomainInfo extends Command @@ -160,6 +160,7 @@ class DomainInfo extends Command
160 "domain" => $param['domain'], 160 "domain" => $param['domain'],
161 "rewrite" => $extend_config ?? [], 161 "rewrite" => $extend_config ?? [],
162 'other_domain' => [$top_domain, '*.' . $top_domain], 162 'other_domain' => [$top_domain, '*.' . $top_domain],
  163 + 'is_https' => $param['is_https'],
163 'private_key' => '', 164 'private_key' => '',
164 'cert' => '' 165 'cert' => ''
165 ]; 166 ];
@@ -472,7 +472,7 @@ class RankDataLogic extends BaseLogic @@ -472,7 +472,7 @@ class RankDataLogic extends BaseLogic
472 } 472 }
473 473
474 //关键词达标天数 474 //关键词达标天数
475 - if($model->updated_date != date('Y-m-d')){ 475 + if($model->updated_date != date('Y-m-d') || empty($model->is_compliance)){
476 //保证关键词数 476 //保证关键词数
477 $keyword_num = DeployBuild::where('project_id', $project_id)->value('keyword_num'); 477 $keyword_num = DeployBuild::where('project_id', $project_id)->value('keyword_num');
478 $type = Project::where('id', $project_id)->value('type'); 478 $type = Project::where('id', $project_id)->value('type');