|
...
|
...
|
@@ -11,6 +11,7 @@ use App\Models\Blog\Blog; |
|
|
|
use App\Models\Channel\Channel;
|
|
|
|
use App\Models\Channel\User;
|
|
|
|
use App\Models\Channel\Zone;
|
|
|
|
use App\Models\Devops\ServerConfig;
|
|
|
|
use App\Models\Inquiry\InquirySet;
|
|
|
|
use App\Models\Manage\Manage;
|
|
|
|
use App\Models\News\News;
|
|
...
|
...
|
@@ -102,6 +103,12 @@ class ProjectLogic extends BaseLogic |
|
|
|
if(isset($info['online_check']['created_manage_id']) && !empty($info['online_check']['created_manage_id'])){
|
|
|
|
$info['online_check']['name'] = ManageLogic::getCacheName($info['online_check']['created_manage_id']);
|
|
|
|
}
|
|
|
|
if(!empty($info['serve_id'])){
|
|
|
|
$info['serve_id_name'] = (new ServerConfig())->read(['id'=>$info['serve_id']])['title'];
|
|
|
|
}
|
|
|
|
if(!empty($info['mysql_id'])){
|
|
|
|
$info['mysql_id_name'] = (new ServerConfig())->read(['id'=>$info['mysql_id']])['title'];
|
|
|
|
}
|
|
|
|
return $this->success($info);
|
|
|
|
}
|
|
|
|
public function save($param){
|
...
|
...
|
|