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

44 lines
808 B

// 首页相关接口
const api = {
// 查看商品分类列表
queryCategoryList: {
url: '/teambuy/goods/queryCategoryList',
method: 'GET',
limit: 500,
},
// 查看商品列表
queryGoodsList: {
url: '/teambuy/goods/queryGoodsList',
method: 'GET',
limit: 100
},
// 轮播图-查询轮播图列表
queryGoodsById: {
url: '/teambuy/goods/queryGoodsById',
method: 'GET',
limit: 500
},
// 首页-获取首页轮播图
queryBannerList : {
url: '/teambuy/index/queryBannerList',
method: 'GET',
limit: 500
},
// 展示信息-查询展示列表
queryInfoList : {
url: '/teambuy/index/queryInfoList',
method: 'GET',
limit: 500
},
// 轮播图-查询轮播图列表
rollList: {
url: '/teambuy/index/rollList',
method: 'GET',
limit: 500
}
}
export default api