This commit is contained in:
杨鹏
2025-09-23 22:27:41 +08:00
parent 232cea0f7e
commit aed85c92df
19 changed files with 238 additions and 374 deletions
+15
View File
@@ -16,6 +16,21 @@ const CategoryApi = {
params: { ids },
});
},
// 查询可用分类 --- 新加的接口
getCategoryTree: () => {
return request({
url: '/product/category/tree',
method: 'GET',
});
},
// 测试
test: (data) => {
return request({
url: '/cloth/list',
method: 'POST',
data,
});
},
};
export default CategoryApi;