| 123456789101112131415161718 |
- import request from '@/utils/request';
- // 查询产品分类列表
- export function listProductCategory(query: any) {
- return request({
- url: '/product/category/list',
- method: 'get',
- params: query
- });
- }
- // 查询产品分类详情
- export function getProductCategory(id: number) {
- return request({
- url: '/product/category/' + id,
- method: 'get'
- });
- }
|