feat: 产品分类推荐数据管理
All checks were successful
Gitea Actions Official-website / deploy-dev (push) Successful in 3s
All checks were successful
Gitea Actions Official-website / deploy-dev (push) Successful in 3s
This commit is contained in:
@@ -87,7 +87,7 @@ Route::group('v1', function () {
|
||||
|
||||
// 视频分类列表
|
||||
Route::get('categorys', 'VideoCategory/list');
|
||||
|
||||
|
||||
// 视频分类
|
||||
Route::group('category', function () {
|
||||
// 视频分类分页数据
|
||||
@@ -311,6 +311,24 @@ Route::group('v1', function () {
|
||||
|
||||
// 分类删除
|
||||
Route::delete('delete/:id', 'ProductCategory/delete');
|
||||
|
||||
// 产品分类推荐数据
|
||||
Route::group('recommend', function () {
|
||||
// 推荐数据分页列表
|
||||
Route::get('index', 'ProductCategoryRecommend/index');
|
||||
|
||||
// 推荐数据详情
|
||||
Route::get('read/:id', 'ProductCategoryRecommend/read');
|
||||
|
||||
// 推荐数据新增
|
||||
Route::post('save', 'ProductCategoryRecommend/save');
|
||||
|
||||
// 推荐数据更新
|
||||
Route::put('update/:id', 'ProductCategoryRecommend/update');
|
||||
|
||||
// 推荐数据删除
|
||||
Route::delete('delete/:id', 'ProductCategoryRecommend/delete');
|
||||
});
|
||||
});
|
||||
|
||||
// 产品购买链接
|
||||
@@ -483,7 +501,7 @@ Route::group('v1', function () {
|
||||
|
||||
// 分页
|
||||
Route::get('index', 'Navigation/index');
|
||||
|
||||
|
||||
// 导航详情
|
||||
Route::get('read/:id', 'Navigation/read');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user