product.js 207 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
import request from "../config/request";

export function getProductCategoryList(pid) {
  return request({
    url: 'product-api/users/category/list',
    method: 'get',
    params: {
      pid
    }
  });
}