作者 lyh

gx

... ... @@ -32,8 +32,8 @@ class RankDataLogic extends BaseLogic
$project_id = $this->user['project_id'];
//查数据
$project = app(ProjectLogic::class)->getInfo($project_id);
$domain_info = app(DomainInfoLogic::class)->getDomainInfo($project_id);
$project = (new ProjectLogic())->getInfo($project_id);
$domain_info = (new DomainInfoLogic)->getDomainInfo($project_id);
$rank = RankData::where('project_id', $project_id)->first();
$rank_week = RankWeek::where('project_id', $project_id)->first();
$recomm_domain = RecommDomain::where('project_id', $project_id)->first();
... ...