diff --git a/src/utils/api.js b/src/utils/api.js index 3a2baeb..6e077b2 100644 --- a/src/utils/api.js +++ b/src/utils/api.js @@ -4,11 +4,14 @@ 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 // 职站中台接口切换 - if(location.host.includes('liuwanr.cn')){ + if(url.includes('liuwanr.cn')){ host = 'http://www.liuwanr.cn'// 职站测试服 - }else if(location.host.includes('occupationlab.com')){ + }else if(url.includes('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'// 中台 }