1
2
3
4
5
6
7
8
9
10
11
12
| import service from './service'
| // 商品分类管理api
| export class ProductCategoryApi {
| /**
| * 获取分类管理树
| * @param {*} params
| */
| getList = (params, showLoading = true) => {
| return service.get('/awl-product-service/sa/productCategory/list', { params, showLoading })
| }
| }
| export default new ProductCategoryApi()
|
|