feat: 新增产品分类用于下拉框场景列表树接口

This commit is contained in:
2025-03-28 16:57:23 +08:00
parent 2d3964f5c4
commit cfba4af57c
3 changed files with 19 additions and 4 deletions

View File

@@ -201,7 +201,7 @@ Route::group('v1', function () {
Route::group('banner', function() {
// 横幅(分类)列表
Route::get('list', 'Banner/list');
// 横幅(分类)分页
Route::get('index', 'Banner/index');
@@ -286,6 +286,7 @@ Route::group('v1', function () {
});
// 产品分类
Route::get('categorys', 'ProductCategory/index')->append(['is_show' => '1']);
Route::group('category', function () {
// tco分类树
Route::get('tco/tree', 'ProductTcoCategory/tree');