|
|
-
- // 会员相关接口
-
- const api = {
- /**
- * 获取充值套餐列表
- */
- queryComboList: {
- url: '/vip/queryComboList',
- method: 'GET',
- },
- // 获取会员权益列表
- getRiceVipList: {
- url: '/index_common/getVipInfoList',
- method: 'GET',
- },
- /**
- * 开通会员
- */
- addVip: {
- url: '/vip/addVip',
- method: 'POST',
- limit : 500,
- auth : true,
- showLoading : true,
- },
- }
-
- export default api
|