裂变星小程序-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.

26 lines
367 B

1 month ago
1 month ago
  1. // vip相关接口
  2. const api = {
  3. getUserInfoVip: {
  4. url: '/info/getUserInfoVip',
  5. method: 'GET',
  6. auth: true,
  7. },
  8. getUserInfoVipList: {
  9. url: '/info/getUserInfoVipList',
  10. method: 'GET',
  11. auth: true,
  12. },
  13. /**
  14. * 激活
  15. */
  16. openVip: {
  17. url: '/fen/openVip',
  18. method: 'POST',
  19. auth: true,
  20. limit : 500,
  21. showLoading : true,
  22. },
  23. }
  24. export default api