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.
|
|
|
const http = require('./http.js')
|
|
|
|
//绑定银行卡
|
|
|
|
export function bingCard(data){
|
|
|
|
return http.$http('post','userBank/saveBankInfo',data)
|
|
|
|
}
|
|
|
|
//提现
|
|
|
|
export function cash(data){
|
|
|
|
return http.$http('post','extract/cash',data)
|
|
|
|
}
|
|
|
|
//获取用户信息
|
|
|
|
export function getUserInfo(){
|
|
|
|
return http.$http('get','userinfo')
|
|
|
|
}
|
|
|
|
|
|
|
|
//立即咨询
|
|
|
|
export function saleLeads(data){
|
|
|
|
return http.$http('post','user/saleLeads',data)
|
|
|
|
}
|
|
|
|
|
|
|
|
// 获取我的团队
|
|
|
|
export function getMyTeam(){
|
|
|
|
return http.$http('post','user/myTeam')
|
|
|
|
}
|
|
|
|
|
|
|
|
// 积分动态
|
|
|
|
export function getIntegralList(data){
|
|
|
|
return http.$http('get','integral/list',data)
|
|
|
|
}
|
|
|
|
|