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.
45 lines
861 B
45 lines
861 B
import { http, getAction, postAction } from '@/common/service/service.js'
|
|
import configService from '@/common/service/config.service.js';
|
|
import stationApis from './modules/station.js'
|
|
|
|
|
|
const apiService = {
|
|
...stationApis,
|
|
|
|
/**
|
|
* 登录
|
|
*/
|
|
login(params) {
|
|
return http.post('/sys/mLogin',params)
|
|
},
|
|
/**
|
|
* 手机号码登录
|
|
*/
|
|
phoneNoLogin(params) {
|
|
return http.post('/sys/phoneLogin',params);
|
|
},
|
|
/**
|
|
* 退出
|
|
*/
|
|
logout(params) {
|
|
return http.post('/sys/logout',params);
|
|
},
|
|
/**
|
|
* 获取文件访问路径
|
|
* @param avatar
|
|
* @param subStr
|
|
* @returns {*}
|
|
*/
|
|
getFileAccessHttpUrl(avatar,subStr){
|
|
if(!subStr) subStr = 'http'
|
|
if(avatar && avatar.startsWith(subStr)){
|
|
return avatar;
|
|
}else{
|
|
return configService.staticDomainURL + "/" + avatar;
|
|
}
|
|
}
|
|
};
|
|
|
|
|
|
export default apiService;
|