|
@@ -16,6 +16,7 @@ use App\Models\Ai\AiBlogAuthor; |
|
@@ -16,6 +16,7 @@ use App\Models\Ai\AiBlogAuthor; |
|
16
|
use App\Models\Channel\Channel;
|
16
|
use App\Models\Channel\Channel;
|
|
17
|
use App\Models\Channel\User;
|
17
|
use App\Models\Channel\User;
|
|
18
|
use App\Models\Channel\Zone;
|
18
|
use App\Models\Channel\Zone;
|
|
|
|
19
|
+use App\Models\Com\CollectLog;
|
|
19
|
use App\Models\Com\NoticeLog;
|
20
|
use App\Models\Com\NoticeLog;
|
|
20
|
use App\Models\Com\UpdateLog;
|
21
|
use App\Models\Com\UpdateLog;
|
|
21
|
use App\Models\Devops\Servers;
|
22
|
use App\Models\Devops\Servers;
|
|
@@ -116,6 +117,8 @@ class ProjectLogic extends BaseLogic |
|
@@ -116,6 +117,8 @@ class ProjectLogic extends BaseLogic |
|
116
|
$info['minor_languages'] = $this->getProjectMinorLanguages($id);
|
117
|
$info['minor_languages'] = $this->getProjectMinorLanguages($id);
|
|
117
|
//升级项目采集完成时间
|
118
|
//升级项目采集完成时间
|
|
118
|
$info['collect_time'] = $info['is_upgrade'] ? UpdateLog::getProjectUpdate($id) : '';
|
119
|
$info['collect_time'] = $info['is_upgrade'] ? UpdateLog::getProjectUpdate($id) : '';
|
|
|
|
120
|
+ //升级项目采集的测试站域名
|
|
|
|
121
|
+ $info['collect_test_domain'] = $info['is_upgrade'] ? CollectLog::getCollectTestDomain($id) : '';
|
|
119
|
//获取项目所属行业
|
122
|
//获取项目所属行业
|
|
120
|
$info['deploy_optimize']['industry'] = ProjectIndustryRelated::where('project_id', $id)->pluck('industry_id')->toArray();
|
123
|
$info['deploy_optimize']['industry'] = ProjectIndustryRelated::where('project_id', $id)->pluck('industry_id')->toArray();
|
|
121
|
|
124
|
|