|
|
|
@ -8,8 +8,11 @@ const isCH = url.includes("124.71.12.62"); //是否巢湖版本 |
|
|
|
|
const isPro = url.includes("occupationlab.com"); //是否职站生产
|
|
|
|
|
const isTest = url.includes('121.37.12.51'); //是否中台测试服
|
|
|
|
|
const isZxy = url.includes('izhixinyun'); //是否是智信云
|
|
|
|
|
const isSq = url.includes('10.20.100.204'); // 商丘
|
|
|
|
|
|
|
|
|
|
let zcPath = `120.78.139.126:8879` // 众筹
|
|
|
|
|
let systemPath = `${location.origin}/banksystem` |
|
|
|
|
let sandPath = `${location.origin}/sandbox` // 沙盘地址
|
|
|
|
|
let host = `${location.origin}/` |
|
|
|
|
let uploadURL = `${location.origin}/` |
|
|
|
|
let title = isZxy ? |
|
|
|
@ -25,11 +28,14 @@ if (isPro) { |
|
|
|
|
} else if (isDev) { |
|
|
|
|
// 本地
|
|
|
|
|
systemPath = `http://${location.hostname}:8093` |
|
|
|
|
sandPath = `http://${location.hostname}:9520` |
|
|
|
|
uploadURL = `http://121.37.12.51/` |
|
|
|
|
host = "http://121.37.12.51/"; // 测试服
|
|
|
|
|
// host = 'https://www.occupationlab.com/' // 正式服
|
|
|
|
|
// host = "http://192.168.31.217:9000/"; // 榕
|
|
|
|
|
// host = "http://192.168.31.51:9000/"; // 赓
|
|
|
|
|
} else if (isSq) { |
|
|
|
|
zcPath = `10.20.100.204:8883` |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const Setting = { |
|
|
|
@ -44,6 +50,7 @@ const Setting = { |
|
|
|
|
apiBaseURL: host, // 接口请求地址
|
|
|
|
|
uploadURL, // 阿里云oss域名
|
|
|
|
|
systemPath, // 子系统地址前缀
|
|
|
|
|
sandPath, |
|
|
|
|
autoLogoutTime: 3600000000, // 长时间未操作,自动退出登录时间
|
|
|
|
|
modalDuration: 3, // 接口请求返回错误时,弹窗的持续时间,单位:秒
|
|
|
|
|
errorModalType: "Message", // 接口请求返回错误时,弹窗的类型,可选值为 Message 或 Notice
|
|
|
|
@ -56,6 +63,8 @@ const Setting = { |
|
|
|
|
isTest, |
|
|
|
|
isPro, |
|
|
|
|
isZxy, |
|
|
|
|
isSq, |
|
|
|
|
zcPath, |
|
|
|
|
/** |
|
|
|
|
* 路由白名单 |
|
|
|
|
* */ |
|
|
|
|