普兆健康管家前端代码仓库
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.

26 lines
419 B

  1. // 产品相关接口
  2. const api = {
  3. // 产品分类查询
  4. getProductCategory: {
  5. url: '/product/category',
  6. method: 'GET',
  7. },
  8. // 产品列表查询
  9. getProductList: {
  10. url: '/product/list',
  11. method: 'GET',
  12. },
  13. // 产品详情查询
  14. getProductDetail: {
  15. url: '/product/detail',
  16. method: 'GET',
  17. },
  18. // 产品规格查询
  19. getProductSpec: {
  20. url: '/product/spec',
  21. method: 'GET',
  22. },
  23. }
  24. export default api