@ssports_fe/ssutils
Version:
21 lines (17 loc) • 342 B
JavaScript
/**
*
* @desc 设置来源
* @return {String}
*/
const getNewApiUrl = type => {
let host = window.location.host;
let apiUrl = '';
if (host.indexOf('www') === -1) {
apiUrl = type + '.' + host;
}
else {
apiUrl = host.replace('www', type);
}
return apiUrl;
};
module.exports = getNewApiUrl;