From 8ac4b49fb2a69920cb26f222c2bc83d3d12b7076 Mon Sep 17 00:00:00 2001 From: yujialong <479214531@qq.com> Date: Mon, 9 Aug 2021 14:51:49 +0800 Subject: [PATCH] modified host --- src/utils/api.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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'// 中台 }