feat: 新增商品管理模块,包含商品分类、品牌、SPU管理及相关表单组件

This commit is contained in:
吃货
2025-07-06 21:27:44 +08:00
parent 4cc5d8bf92
commit f0516fa857
21 changed files with 2465 additions and 17 deletions

View File

@@ -49,3 +49,10 @@ export function getCategoryList(params: any) {
},
);
}
// 获得商品分类列表
export function getCategorySimpleList() {
return requestClient.get<MallCategoryApi.Category[]>(
'/product/category/list-all-simple',
);
}