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

16 lines
202 B

  1. // 商家相关接口
  2. const api = {
  3. /**
  4. * 新增商家信息
  5. */
  6. addShop: {
  7. url: '/shop/addShop',
  8. method: 'POST',
  9. limit : 500,
  10. auth : true,
  11. showLoading : true,
  12. },
  13. }
  14. export default api