裂变星小程序-25.03.04
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
459 B

1 month ago
1 month ago
  1. // 个人相关接口
  2. const api = {
  3. /**
  4. * 获取推广二维码
  5. */
  6. getQrCode: {
  7. url: '/info/getQrCode',
  8. method: 'GET',
  9. auth: true,
  10. },
  11. /**
  12. * 获取我的钱包数据信息-钱包流水列表
  13. */
  14. getWalletList: {
  15. url: '/info/getWalletList',
  16. method: 'GET',
  17. auth: true,
  18. },
  19. /**
  20. * 提现
  21. */
  22. openMoney: {
  23. url: '/fen/openMoney',
  24. method: 'POST',
  25. auth: true,
  26. limit : 500,
  27. showLoading : true,
  28. },
  29. }
  30. export default api