|
...
|
...
|
@@ -215,6 +215,10 @@ class RankDataLogic extends BaseLogic |
|
|
|
$page = intval($this->request['page'] ?: 1);
|
|
|
|
$lang = $this->request['lang'] ?: '';
|
|
|
|
$project_id = $this->user['project_id'];
|
|
|
|
# fixme 白帽演示项目或者演示项目排名信息数据
|
|
|
|
if ($project_id == 3989) {
|
|
|
|
$project_id = 1;
|
|
|
|
}
|
|
|
|
$project = (new ProjectLogic())->getProjectInfo($project_id);
|
|
|
|
if(request('api_no')){
|
|
|
|
$api_no = request('api_no');
|
|
...
|
...
|
@@ -286,8 +290,8 @@ class RankDataLogic extends BaseLogic |
|
|
|
$v = [
|
|
|
|
'keyword' => $key,
|
|
|
|
'domain_type' => $domain_arr[0],
|
|
|
|
'domain' => $domain_arr[1],
|
|
|
|
'domain_text' => $domain_text,
|
|
|
|
'domain' => $this->user['project_id'] == 3989 ? 'google.com' : $domain_arr[1], # fixme 白帽演示项目或者演示项目排名信息数据
|
|
|
|
'domain_text' => $this->user['project_id'] == 3989 ? 'google.com' : $domain_text, # fixme 白帽演示项目或者演示项目排名信息数据
|
|
|
|
'g' => $last['g'], //1核心关键词
|
|
|
|
'position' => $data,
|
|
|
|
];
|
...
|
...
|
|