商品分类维护

This commit is contained in:
JeromeSoar
2022-04-24 17:01:10 +08:00
parent 4e67b6bbcf
commit d3edaec2b1
7 changed files with 137 additions and 58 deletions

View File

@ -34,6 +34,15 @@ export function getCategory(id) {
})
}
// 获得商品分类
export function listCategory(query) {
return request({
url: '/product/category/listByQuery',
method: 'get',
params: query
})
}
// 获得商品分类分页
export function getCategoryPage(query) {
return request({