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.
25 lines
496 B
25 lines
496 B
const http = require('./http.js') |
|
//绑定手机号 |
|
export function bingPhone(){ |
|
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) |
|
} |
|
|
|
|