feat: 添加获取系统前台各模块url接口

This commit is contained in:
2025-03-14 17:58:36 +08:00
parent 78dc1188f7
commit 67f5a529ca
7 changed files with 178 additions and 4 deletions

View File

@@ -13,7 +13,13 @@ use think\facade\Route;
// v1版本路由定义
Route::group('v1', function () {
// 获取系统信息
Route::get('system/info', 'System/info');
Route::group('system', function() {
// 获取系统信息
Route::get('info', 'System/info');
// 组装系统内页面URL
Route::get('urls', 'System/urls');
});
// 用户模块
Route::group('user', function () {