爱简收旧衣按件回收前端代码仓库
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.

106 lines
2.4 KiB

2 months ago
2 months ago
  1. // 个人相关接口
  2. const api = {
  3. // // 充值
  4. // recharge: {
  5. // url: '/recycle-admin/applet/money/withdraw',
  6. // method: 'GET',
  7. // auth: true,
  8. // limit: 1000,
  9. // showLoading: true,
  10. // },
  11. // // 获取地址列表带分页
  12. // getAddressPageList: {
  13. // url: '/info_common/getAddressPageList',
  14. // method: 'GET',
  15. // auth: true,
  16. // },
  17. // // 增加或修改地址信息
  18. // addOrUpdateAddress: {
  19. // url: '/info_common/addOrUpdateAddress',
  20. // method: 'POST',
  21. // limit: 500,
  22. // auth: true,
  23. // showLoading: true,
  24. // },
  25. // // 删除地址
  26. // deleteAddress: {
  27. // url: '/info_common/deleteAddress',
  28. // method: 'GET',
  29. // limit: 500,
  30. // auth: true,
  31. // showLoading: true,
  32. // },
  33. // // 修改默认地址
  34. // updateDefaultAddress: {
  35. // url: '/info_common/updateDefaultAddress',
  36. // method: 'GET',
  37. // auth: true,
  38. // limit: 1000,
  39. // },
  40. // // 获取粉丝列表带分页
  41. // getFansPageList: {
  42. // url: '/info_common/getFansPageList',
  43. // method: 'GET',
  44. // auth: true,
  45. // },
  46. // // 获取相关介绍
  47. // getInfoIntroduce: {
  48. // url: '/info_common/getInfoIntroduce',
  49. // method: 'GET',
  50. // auth: true,
  51. // },
  52. // // 获取个人邀请码
  53. // getInviteCode: {
  54. // url: '/info_common/getInviteCode',
  55. // method: 'GET',
  56. // auth: true,
  57. // },
  58. // // 获取订单列表带分页
  59. // getOrderPageList: {
  60. // url: '/info_common/getOrderPageList',
  61. // method: 'GET',
  62. // auth: true,
  63. // },
  64. // // 获取订单详情
  65. // getOrderDetail: {
  66. // url: '/info_common/getOrderDetail',
  67. // method: 'GET',
  68. // auth: true,
  69. // },
  70. // // 获取流水记录带分页
  71. // getWaterPageList: {
  72. // url: '/info_common/getWaterPageList',
  73. // method: 'GET',
  74. // auth: true,
  75. // },
  76. // // 获取相关介绍
  77. // getInfoIntroduce: {
  78. // url: '/info_common/getInfoIntroduce',
  79. // method: 'GET',
  80. // },
  81. // // 获取相关介绍详情
  82. // getInfoIntroduceDetail: {
  83. // url: '/info_common/getRiceNewsDetail',
  84. // method: 'GET',
  85. // },
  86. // // 查询个人信息相关
  87. // getRiceInfo: {
  88. // url: '/info_common/getRiceInfo',
  89. // method: 'GET',
  90. // limit: 500,
  91. // },
  92. // // 获取购物车信息列表带分页
  93. // getCartPageList: {
  94. // url: '/info_common/getCartPageList',
  95. // method: 'GET',
  96. // },
  97. // // 领取新人优惠券
  98. // getRiceCoupon: {
  99. // url: '/info_common/getRiceCoupon',
  100. // method: 'GET',
  101. // limit: 500,
  102. // auth: true,
  103. // },
  104. }
  105. export default api