敢为人鲜小程序前端代码仓库
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.
 
 
 

24 lines
441 B

// 首页相关接口
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