推拿小程序前端代码仓库
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.

28 lines
410 B

3 months ago
3 months ago
3 months ago
3 months ago
  1. // 会员相关接口
  2. const api = {
  3. /**
  4. * 获取充值套餐列表
  5. */
  6. queryComboList: {
  7. url: '/vip/queryComboList',
  8. method: 'GET',
  9. },
  10. // 获取会员权益列表
  11. getRiceVipList: {
  12. url: '/index_common/getVipInfoList',
  13. method: 'GET',
  14. },
  15. /**
  16. * 开通会员
  17. */
  18. addVip: {
  19. url: '/vip/addVip',
  20. method: 'POST',
  21. limit : 500,
  22. auth : true,
  23. showLoading : true,
  24. },
  25. }
  26. export default api