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

41 lines
626 B

  1. // 商品相关接口
  2. const api = {
  3. /**
  4. * 查询分类接口
  5. */
  6. getCategoryList: {
  7. url: '/config/queryCategoryList',
  8. method: 'GET',
  9. },
  10. /**
  11. * 查询推拿项目列表
  12. */
  13. queryProductList: {
  14. url: '/item/queryItemList',
  15. method: 'GET',
  16. },
  17. /**
  18. * 查询推拿项目列表
  19. */
  20. queryProductDetail: {
  21. url: '/item/queryItemById',
  22. method: 'GET',
  23. },
  24. /**
  25. * 获取优惠券信息
  26. */
  27. queryVouchersList: {
  28. url: '/vouchers/queryVouchersList',
  29. method: 'GET',
  30. },
  31. /**
  32. * 获取优惠券信息
  33. */
  34. queryVoucherShopList: {
  35. url: '/vouchers/queryShopList',
  36. method: 'GET',
  37. },
  38. }
  39. export default api