| | |
| | | return request.post('/system/login', data) |
| | | } |
| | | |
| | | // 短信验证码登录 |
| | | export function loginByPhone (data) { |
| | | return request.post('/system/loginByPhone', data) |
| | | } |
| | | |
| | | // 登出 |
| | | export function logout (data) { |
| | | return request.post('/system/logout', data) |
| | |
| | | return request.get('/system/getUserInfo', { |
| | | autoLogin: false |
| | | }) |
| | | } |
| | | |
| | | // 切换企业 |
| | | export function switchCompany (params) { |
| | | return request.get('/system/switchCompany', { params }) |
| | | } |
| | | |
| | | // 品牌列表查询 |
| | |
| | | // 上传接口 |
| | | export function upload (data) { |
| | | return request.post('/public/upload', data) |
| | | } |
| | | } |
| | | |
| | | // 区域树列表 |
| | | export function findTreeList (data) { |
| | | return request.post('/business/areas/findTreeList', data) |
| | | } |