// 我的 相关接口
|
|
|
|
const api = {
|
|
// 我的-获取推荐二维码
|
|
getInviteCode: {
|
|
url: '/teambuy/share/getInviteCode',
|
|
method: 'POST',
|
|
limit: 500
|
|
},
|
|
|
|
// 我的-获取个人中心基础数据信息
|
|
getUserCenterData: {
|
|
url: '/teambuy/userInfo/getUserCenterData',
|
|
method: 'GET',
|
|
limit: 500
|
|
},
|
|
|
|
// 我的-查看个人信息
|
|
queryUser: {
|
|
url: '/teambuy/userInfo/queryUser',
|
|
method: 'GET',
|
|
limit: 500
|
|
},
|
|
|
|
// 我的-团长申请
|
|
addLeader: {
|
|
url: '/teambuy/leader/addLeader',
|
|
method: 'POST',
|
|
limit: 500
|
|
},
|
|
|
|
// 我的-解绑团长
|
|
deleteLeader: {
|
|
url: '/teambuy/leader/deleteLeader',
|
|
method: 'POST',
|
|
limit: 500
|
|
},
|
|
|
|
|
|
// 我的-更换团长
|
|
updateLeader: {
|
|
url: '/teambuy/leader/updateLeader',
|
|
method: 'POST',
|
|
limit: '500'
|
|
},
|
|
|
|
// 我的-查询团长列表(下单选择地址)
|
|
queryLeaderList: {
|
|
url: '/teambuy/leader/queryLeaderList',
|
|
method: 'GET',
|
|
limit: 500
|
|
},
|
|
|
|
// 我的-查询团长信息
|
|
queryLeaderInfo: {
|
|
url: '/teambuy/leader/queryLeaderInfo',
|
|
method: 'GET',
|
|
limit: 500
|
|
},
|
|
|
|
// 我的-我的团员
|
|
queryMemberList: {
|
|
url: '/teambuy/leader/queryMemberList',
|
|
method: 'GET',
|
|
limit: 500
|
|
},
|
|
|
|
// 我的-修改团长信息
|
|
updateLeaderInfo: {
|
|
url: '/teambuy/leader/updateLeaderInfo',
|
|
method: 'POST',
|
|
limit: 500
|
|
},
|
|
|
|
// 我的-查询绑定团长信息(默认下单地址)
|
|
queryMyLeader: {
|
|
url: '/teambuy/leader/queryMyLeader',
|
|
method: 'GET',
|
|
limit: 500
|
|
},
|
|
|
|
// 钱包-充值回调
|
|
CashNotify: {
|
|
url: '/teambuy/amount/CashNotify',
|
|
method: 'POST',
|
|
limit: 500
|
|
},
|
|
|
|
// 钱包-充值
|
|
cashIn: {
|
|
url: '/teambuy/amount/cashIn',
|
|
method: 'POST',
|
|
limit: 500
|
|
},
|
|
|
|
// 钱包- 收支明细
|
|
queryAmountLog: {
|
|
url: '/teambuy/amount/queryAmountLog',
|
|
method: 'POST',
|
|
limit: 500
|
|
},
|
|
|
|
|
|
}
|
|
|
|
export default api
|