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