|
|
// 产品相关接口
|
|
|
|
const api = {
|
|
// 产品分类查询
|
|
getProductCategory: {
|
|
url: '/product/category',
|
|
method: 'GET',
|
|
},
|
|
// 产品列表查询
|
|
getProductList: {
|
|
url: '/product/list',
|
|
method: 'GET',
|
|
},
|
|
// 产品详情查询
|
|
getProductDetail: {
|
|
url: '/product/detail',
|
|
method: 'GET',
|
|
},
|
|
// 产品规格查询
|
|
getProductSpec: {
|
|
url: '/product/spec',
|
|
method: 'GET',
|
|
},
|
|
}
|
|
|
|
export default api
|