You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.5 KiB

3 years ago
import Cookie from 'js-cookie'
3 years ago
const url = location.host
3 years ago
const isDev = process.env.NODE_ENV === 'development' //是否本地
3 years ago
const isHh = url.includes('10.196.131.73') //是否是河海版本
const isPro = url.includes('occupationlab.com') //是否职站生产
2 years ago
const isZxy = url.includes('izhixinyun.com') //是否智信云
3 years ago
let host = location.origin + '/'
3 years ago
let bankPath = `${location.origin}/banksystem` // 银行系统
3 years ago
// 121.37.12.51 | 192.168.31.151
3 years ago
if (isDev) {
2 years ago
host = 'http://192.168.31.51:9000/'
// host = 'http://192.168.31.116:9000/'
2 years ago
host = 'http://121.37.12.51:9000/'
// host = 'https://occupationlab.com/'
3 years ago
bankPath = `http://${location.hostname}:8093`
3 years ago
} else if (isPro) {
host = 'https://occupationlab.com/'
3 years ago
bankPath = `https://www.huorantech.cn/banksystem`
3 years ago
}
3 years ago
const systemId = Cookie.get('admin-systemId')
4 years ago
export default {
/**
* @description 域名
*/
host,
3 years ago
/**
* @description 是否本地
*/
isDev,
4 years ago
/**
* @description 是否是河海版本
*/
isHh,
3 years ago
/**
* @description 是否是职站生产
*/
isPro,
2 years ago
/**
* @description 是否智信云
*/
isZxy,
4 years ago
/**
* @description 系统主题色
3 years ago
* 如果有多个systemId则显示系统7的主题色
4 years ago
*/
defaultSystem: systemId.includes(',') ? 7 : systemId,
3 years ago
/**
* 银行系统
**/
bankPath,
4 years ago
/**
* @description 长时间未操作自动退出登录时间
*/
autoLogoutTime: 3600000
4 years ago
}