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

36 lines
552 B

  1. // 订单相关接口
  2. const api = {
  3. // 订单-列表查询
  4. getOrderList: {
  5. url: '/order/list',
  6. method: 'GET',
  7. auth: true,
  8. showLoading : true,
  9. },
  10. // 订单详情
  11. getOrderDetail: {
  12. url: '/order/detail',
  13. method: 'GET',
  14. auth: true,
  15. showLoading : true,
  16. },
  17. // 创建订单
  18. createOrder: {
  19. url: '/order/create',
  20. method: 'POST',
  21. auth: true,
  22. limit : 500,
  23. showLoading : true,
  24. },
  25. // 再次支付
  26. payOrder: {
  27. url: '/order/pay',
  28. method: 'POST',
  29. auth: true,
  30. limit : 500,
  31. showLoading : true,
  32. },
  33. }
  34. export default api