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

51 lines
920 B

  1. // 预约检测相关接口
  2. const api = {
  3. // 预约检测列表查询
  4. getSubscribeList: {
  5. url: '/subscribe/list',
  6. method: 'GET',
  7. auth: true,
  8. limit : 500,
  9. showLoading : true,
  10. },
  11. // 预约检测详情
  12. getSubscribeDetail: {
  13. url: '/subscribe/detail',
  14. method: 'GET',
  15. auth: true,
  16. limit : 500,
  17. showLoading : true,
  18. },
  19. // 预约检测提交或修改
  20. submitOrUpdateSubscribe: {
  21. url: '/subscribe/submitOrUpdate',
  22. method: 'GET',
  23. auth: true,
  24. limit : 500,
  25. showLoading : true,
  26. },
  27. // 线上寄回试剂盒
  28. logisticsSubscribe: {
  29. url: '/subscribe/logistics',
  30. method: 'GET',
  31. auth: true,
  32. limit : 500,
  33. showLoading : true,
  34. },
  35. // 预约检测取消
  36. cancelSubscribe: {
  37. url: '/subscribe/cancel',
  38. method: 'GET',
  39. auth: true,
  40. limit : 500,
  41. showLoading : true,
  42. },
  43. // 查询医院
  44. getSubscribeHospital: {
  45. url: '/subscribe/hospital',
  46. method: 'GET',
  47. },
  48. }
  49. export default api