feat: 新增产品数据导出接口

This commit is contained in:
2025-02-12 16:33:22 +08:00
parent cb11607279
commit 96127e90c6
4 changed files with 177 additions and 2 deletions

View File

@@ -127,6 +127,9 @@ Route::group('v1', function () {
// 产品删除
Route::delete('delete/:id', 'Product/delete');
// 产品导出
Route::get('export', 'Product/export');
// 产品属性特征
Route::get('attrs', 'ProductAttr/index')->append(['scene' => 'list']);