diff --git a/app/common/enum/MenuEnum.php b/app/common/enum/MenuEnum.php index ea4c16f..6d230fb 100644 --- a/app/common/enum/MenuEnum.php +++ b/app/common/enum/MenuEnum.php @@ -184,7 +184,7 @@ class MenuEnum{ [ 'index' => 121, 'name' => '投诉中心', - 'link' => '/pages/user/complain', + 'link' => '/bundle/pages/user/complain', 'is_tab' => 1, 'link_type' => 1, ] @@ -292,7 +292,7 @@ class MenuEnum{ [ 'index' => 1001, 'name' => '投诉中心', - 'link' => '/pages/user/complain', + 'link' => '/bundle/pages/user/complain', 'is_tab' => 0, 'link_type' => 1, 'menu_type' => 1, diff --git a/public/index.php b/public/index.php index d811db3..22f7acb 100644 --- a/public/index.php +++ b/public/index.php @@ -15,10 +15,6 @@ namespace think; require __DIR__ . '/../vendor/autoload.php'; define('ROOT_PATH',__DIR__); -if (!file_exists(__DIR__ .'/../config/install.lock')) { - header("location:/install/install.php"); - exit; -} // 执行HTTP应用并响应 $http = (new App())->http;