作者 lyh

gx

... ... @@ -165,7 +165,6 @@ class UserLoginLogic
$info['domain'] = (!empty($project['deploy_optimize']['domain']) ? ((new DomainInfo())->getDomain($project['deploy_optimize']['domain'])) : ($project['deploy_build']['test_domain'] ?? ''));
$info['is_customized'] = $project['is_customized'];
$info['is_upload_manage'] = $project['is_upload_manage'];
$info['is_show_blog'] = $project['is_show_blog'];
$info['upload_config'] = $project['upload_config'];
$info['main_lang_id'] = $project['main_lang_id'];
$info['image_max'] = $project['image_max'];
... ... @@ -201,7 +200,6 @@ class UserLoginLogic
((new DomainInfo())->getDomain($project['deploy_optimize']['domain'])) : ($project['deploy_build']['test_domain'] ?? ''));
$info['is_customized'] = $project['is_customized'];
$info['is_upload_manage'] = $project['is_upload_manage'];
$info['is_show_blog'] = $project['is_show_blog'];
$info['upload_config'] = $project['upload_config'];
$info['main_lang_id'] = $project['main_lang_id'];
$info['image_max'] = $project['image_max'];
... ...
... ... @@ -139,45 +139,6 @@ class RouteMap extends Base
return $route;
}
// /**
// * @remark :产品新增单独处理路由
// * @name :setProductRoute
// * @author :lyh
// * @method :post
// * @time :2023/11/21 18:48
// */
// public static function setProductRoute($route,$i = 0){
// $routes = $route.'-'.$i.'-product';
// $routeMapModel = new RouteMap();
// $routeInfo = $routeMapModel->read(['route'=>$routes]);
// if($routeInfo === false){
// return $routes;
// }else{
// $i = $i + 1;
// return self::setProductRoute($route,$i);
// }
// }
//
// /**
// * @remark :关键字新增单独处理路由
// * @name :setProductRoute
// * @author :lyh
// * @method :post
// * @time :2023/11/21 18:48
// */
// public static function setKeywordRoute($route,$i = 0){
// $routes = $route.'-'.$i.'-tag';
// $routeMapModel = new RouteMap();
// $routeInfo = $routeMapModel->read(['route'=>$routes]);
// if($routeInfo === false){
// return $routes;
// }else{
// $i = $i + 1;
// return self::setKeywordRoute($route,$i);
// }
// }
/**
* @param $route
* @param $project_id
... ...