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

19 lines
307 B

2 months ago
  1. // vip相关接口
  2. const api = {
  3. // 获取会员权益列表
  4. getRiceVipList: {
  5. url: '/rice_vip/getRiceVipList',
  6. method: 'GET',
  7. },
  8. // 申请成为会员
  9. applyRiceVip: {
  10. url: '/rice_vip/applyRiceVip',
  11. method: 'POST',
  12. limit : 500,
  13. auth : true,
  14. showLoading : true,
  15. },
  16. }
  17. export default api