feat: 添加获取系统前台各模块url接口
This commit is contained in:
@@ -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 () {
|
||||
|
||||
Reference in New Issue
Block a user