feat: 新增导航相关接口

This commit is contained in:
2025-03-01 18:05:35 +08:00
parent cc7369725e
commit dbe5f40ffb
10 changed files with 252 additions and 3 deletions

View File

@@ -406,6 +406,15 @@ Route::group('v1', function () {
// 菜单删除
Route::delete('delete/:id', 'Menu/delete');
});
// 导航管理
Route::group('navigation', function() {
// 导航数据类型
Route::get('link/type', 'Navigation/linkType');
// 导航分页
Route::get('index', 'Navigation/index');
});
})->prefix('v1.');
Route::miss(function() {