|
...
|
...
|
@@ -109,7 +109,7 @@ class ProjectLogic extends BaseLogic |
|
|
|
* @time :2023/7/28 17:11
|
|
|
|
*/
|
|
|
|
public function getProjectInfo($id){
|
|
|
|
// $info = Common::get_user_cache($this->model,$id);
|
|
|
|
$info = Common::get_user_cache($this->model,$id);
|
|
|
|
if(empty($info)){
|
|
|
|
$info = $this->model->with('payment')->with('deploy_build')
|
|
|
|
->with('deploy_optimize')->with('online_check')
|
|
...
|
...
|
@@ -121,7 +121,7 @@ class ProjectLogic extends BaseLogic |
|
|
|
}
|
|
|
|
Common::set_user_cache($info,$this->model,$id);
|
|
|
|
}
|
|
|
|
return $this->success((array)$info);
|
|
|
|
return $this->success($info);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
...
|
...
|
|