普兆健康管家前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

27 lines
419 B

// 产品相关接口
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