import http from '@/utils/request' /** 分类 */ export const getCategory = () => { return http({ url: '/api/service/productCategory/list', method: 'get' }) } /** 商品列表 */ export const getProductList = data => { return http({ url: '/api/service/product/list', method: 'get', data }) }