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.
26 lines
496 B
26 lines
496 B
3 years ago
|
const http = require('./http.js')
|
||
3 years ago
|
//绑定手机号
|
||
3 years ago
|
export function bingPhone(){
|
||
3 years ago
|
return http.$http()
|
||
|
}
|
||
|
//获取用户信息
|
||
|
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('get','getTeam')
|
||
|
}
|
||
|
|
||
|
// 积分动态
|
||
|
export function getIntegralList(data){
|
||
|
return http.$http('get','integral/list',data)
|
||
|
}
|
||
|
|