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

98 lines
1.9 KiB

  1. // 我的 相关接口
  2. const api = {
  3. // 我的-获取推荐二维码
  4. getInviteCode: {
  5. url: '/teambuy/share/getInviteCode',
  6. method: 'POST',
  7. limit: 500
  8. },
  9. // 我的-获取个人中心基础数据信息
  10. getUserCenterData: {
  11. url: '/teambuy/userInfo/getUserCenterData',
  12. method: 'GET',
  13. limit: 500
  14. },
  15. // 我的-查看个人信息
  16. queryUser: {
  17. url: '/teambuy/userInfo/queryUser',
  18. method: 'GET',
  19. limit: 500
  20. },
  21. // 我的-团长申请
  22. addLeader: {
  23. url: '/teambuy/leader/addLeader',
  24. method: 'POST',
  25. limit: 500
  26. },
  27. // 我的-解绑团长
  28. deleteLeader: {
  29. url: '/teambuy/leader/deleteLeader',
  30. method: 'POST',
  31. limit: 500
  32. },
  33. // 我的-更换团长
  34. updateLeader: {
  35. url: '/teambuy/leader/updateLeader',
  36. method: 'POST',
  37. limit: '500'
  38. },
  39. // 我的-查询团长列表(下单选择地址)
  40. queryLeaderList: {
  41. url: '/teambuy/leader/queryLeaderList',
  42. method: 'GET',
  43. limit: 500
  44. },
  45. // 我的-查询团长信息
  46. queryLeaderInfo: {
  47. url: '/teambuy/leader/queryLeaderInfo',
  48. method: 'GET',
  49. limit: 500
  50. },
  51. // 我的-我的团员
  52. queryMemberList: {
  53. url: '/teambuy/leader/queryMemberList',
  54. method: 'GET',
  55. limit: 500
  56. },
  57. // 我的-修改团长信息
  58. updateLeaderInfo: {
  59. url: '/teambuy/leader/updateLeaderInfo',
  60. method: 'POST',
  61. limit: 500
  62. },
  63. // 钱包-充值回调
  64. CashNotify: {
  65. url: '/teambuy/amount/CashNotify',
  66. method: 'POST',
  67. limit: 500
  68. },
  69. // 钱包-充值
  70. cashIn: {
  71. url: '/teambuy/amount/cashIn',
  72. method: 'POST',
  73. limit: 500
  74. },
  75. // 钱包- 收支明细
  76. queryAmountLog: {
  77. url: '/teambuy/amount/queryAmountLog',
  78. method: 'POST',
  79. limit: 500
  80. },
  81. }
  82. export default api