推拿小程序前端代码仓库
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.

46 lines
633 B

3 weeks ago
  1. // 商家相关接口
  2. const api = {
  3. /**
  4. * 查询商家详情
  5. */
  6. queryShopList: {
  7. url: '/shop/queryShopList',
  8. method: 'GET',
  9. auth : true,
  10. showLoading : true,
  11. },
  12. /**
  13. * 查询商家详情
  14. */
  15. queryShopById: {
  16. url: '/shop/queryShopById',
  17. method: 'GET',
  18. auth : true,
  19. showLoading : true,
  20. },
  21. /**
  22. * 新增商家信息
  23. */
  24. addShop: {
  25. url: '/shop/addShop',
  26. method: 'POST',
  27. limit : 500,
  28. auth : true,
  29. showLoading : true,
  30. },
  31. /**
  32. * 修改商家信息
  33. */
  34. updateShop: {
  35. url: '/shop/updateShop',
  36. method: 'POST',
  37. limit : 500,
  38. auth : true,
  39. showLoading : true,
  40. },
  41. }
  42. export default api