mall-uniapp/sheep/api/product/category.js

13 lines
268 B
JavaScript
Raw Normal View History

2023-12-10 14:12:33 +00:00
import request from '@/sheep/request';
const CategoryApi = {
// 查询分类列表
getCategoryList: () => {
return request({
url: '/app-api/product/category/list',
method: 'GET'
});
}
};
export default CategoryApi;