建材商城系统20241014
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.

27 lines
412 B

  1. // 登录相关接口
  2. const api = {
  3. // 获取banner
  4. getBanner: {
  5. url: '/index/getBanner',
  6. method: 'GET',
  7. },
  8. // 获取菜单
  9. getIcon: {
  10. url: '/index/getIcon',
  11. method: 'GET',
  12. },
  13. // 获取商品详情
  14. getProductDetail: {
  15. url: '/index/getProductDetail',
  16. method: 'GET',
  17. },
  18. // 获取商品列表
  19. getProductList: {
  20. url: '/index/getProductList',
  21. method: 'GET',
  22. },
  23. }
  24. export default api