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

17 lines
304 B

7 months ago
7 months ago
7 months ago
7 months ago
5 months ago
7 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. export default api