鸿宇研学生前端代码
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.

31 lines
569 B

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