apiList.js 869 B

123456789101112131415161718192021222324252627282930313233343536
  1. /**
  2. * Created by JianJia.Zhou<jianjia.zhou> on 2021/3/17.
  3. */
  4. module.exports = {
  5. // 登录
  6. login: '/passport/login',
  7. // 设置
  8. settingGet: '/setting/get',
  9. settingConfig: '/setting/config',
  10. // 购买会员记录
  11. memberRecord: '/user/memberRecord',
  12. // 用户信息
  13. userGet: '/user/get',
  14. // 用户余额
  15. userOverage: '/user/overage',
  16. // 用户收益
  17. userIncome: '/user/income',
  18. // 购买会员
  19. userBuy: '/user/buy',
  20. // 查询购买会员订单
  21. userQuery: '/user/query',
  22. // 推广列表
  23. userShares: '/user/shares',
  24. // 绑定上级
  25. userBind: '/user/bind',
  26. // 更新
  27. userUpdate: '/user/update',
  28. // 用户绑定手机号
  29. userBindPhone: '/user/bindPhone',
  30. // 提现申请
  31. withdrawApply: '/withdraw/apply',
  32. // 提现列表
  33. withdrawLists: '/withdraw/lists',
  34. }