敢为人鲜小程序前端代码仓库
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
782 B

  1. // 首页相关接口
  2. const api = {
  3. // 订单-查询团餐订单列表-详情
  4. queryLeaderOrderList: {
  5. url: '/teambuy/order/queryLeaderOrderList',
  6. method: 'GET',
  7. limit: 500,
  8. },
  9. // 订单-查看优惠券列表-详情
  10. queryCouponList: {
  11. url: '/teambuy/coupon/queryCouponList',
  12. method: 'GET',
  13. limit: 500
  14. },
  15. // 订单- 查询团餐订单列表 - 详情
  16. queryLeaderOrderList: {
  17. url: '/teambuy/order/queryLeaderOrderList',
  18. method: 'GET',
  19. limit: 500
  20. },
  21. // 订单-查看团员订单列表-详情
  22. queryMemberOrderList: {
  23. url: '/teambuy/order/queryMemberOrderList',
  24. method: 'GET',
  25. limit: 500
  26. },
  27. // 订单-查看购物车列表-详情
  28. queryShopcarList: {
  29. url: '/teambuy/shopcar/queryShopcarList',
  30. method: 'GET',
  31. limit: 500
  32. }
  33. }
  34. export default api