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

23 lines
439 B

5 months ago
5 months ago
5 months ago
5 months ago
3 months ago
5 months ago
  1. // 首页相关接口
  2. const api = {
  3. // 查看商品分类列表
  4. queryCategoryList: {
  5. url: '/teambuy/goods/queryCategoryList',
  6. method: 'GET',
  7. limit: 500,
  8. },
  9. // 查看商品列表
  10. queryGoodsList: {
  11. url: '/teambuy/goods/queryGoodsList',
  12. method: 'GET',
  13. limit: 500
  14. },
  15. // 商品信息- 查询商品信息详情
  16. queryGoodsById: {
  17. url: '/teambuy/goods/queryGoodsById',
  18. method: 'GET',
  19. limit: 500
  20. },
  21. }
  22. export default api