// 首页相关接口
|
|
|
|
const api = {
|
|
// 查看商品分类列表
|
|
queryCategoryList: {
|
|
url: '/teambuy/goods/queryCategoryList',
|
|
method: 'GET',
|
|
limit: 500,
|
|
},
|
|
// 查看商品列表
|
|
queryGoodsList: {
|
|
url: '/teambuy/goods/queryGoodsList',
|
|
method: 'GET',
|
|
limit: 500,
|
|
},
|
|
// 商品信息- 查询商品信息详情
|
|
queryGoodsById: {
|
|
url: '/teambuy/goods/queryGoodsById',
|
|
method: 'GET',
|
|
limit: 500,
|
|
},
|
|
}
|
|
|
|
export default api
|