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

29 lines
410 B

// 会员相关接口
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