http请求前缀,添加巢湖项目判断

master
yujialong 3 years ago
parent c491a5ee79
commit 52cdc02a32
  1. 19
      src/utils/api.js

@ -4,21 +4,22 @@ let isKd = /&host=(\d)/.exec(location.hash) //host:{1:测试环境,2:正
if(isKd){
host = isKd[1] == 1 ? 'http://122.9.154.146' : 'http://116.63.168.79'
}else{
let url = location.host
console.log(url,'判断120.78.198.231',url.includes('120.78.198.231'));
let url = location.host;
// 职站中台接口切换
if(url.includes('120.78.198.231')){
host = 'http://120.78.198.231'// 职站测试服
host = 'http://120.78.198.231'; // 职站测试服
}else if(url.includes('occupationlab.com')){
host = 'http://www.occupationlab.com'// 职站正式服
host = 'http://www.occupationlab.com'; // 职站正式服
}else if(url.includes('10.196.131.73')){
host = 'http://10.196.131.73'// 河海版
}else{
host = 'http://39.108.250.202'// 中台
host = 'http://10.196.131.73'; // 河海版
}else if (url.includes('120.78.127.12')) {
host = 'http://120.78.127.12'; // 巢湖版
} else {
host = 'http://39.108.250.202'; // 中台
}
}
let host1 = 'http://39.108.250.202:8080'
let uploadURL = 'http://8.134.8.197:8001'
let host1 = 'http://39.108.250.202:8080';
let uploadURL = 'http://8.134.8.197:8001';
export default {
fileupload: `${uploadURL}/oss/manage/fileupload`,

Loading…
Cancel
Save