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.

65 lines
1.6 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' //是否本地
4 months ago
const isTest = url.includes('occupationlab.com') //测试服
3 years ago
const isHh = url.includes('10.196.131.73') //是否是河海版本
2 years ago
const isZxy = url.includes('izhixinyun.com') //是否智信云
6 months ago
let vscodeUrl = 'http://172.16.40.56:8088/'
3 years ago
let host = location.origin + '/'
1 year ago
// let host = `https://izhixinyun.com/`
4 months ago
let bankPath = `${location.origin}/systembank` // 银行系统
4 months ago
// occupationlab.com | 192.168.31.151
3 years ago
if (isDev) {
4 months ago
host = 'http://192.168.31.217:9000/'
// host = 'https://occupationlab.com/'
6 months ago
// host = 'https://izhixinyun.com/'
3 years ago
bankPath = `http://${location.hostname}:8093`
4 months ago
} else if (isTest) {
10 months ago
vscodeUrl = 'https://vscode.occupationlab.com'
2 years ago
} else if (isZxy) {
10 months ago
vscodeUrl = 'https://vscode.izhixinyun.com'
3 years ago
}
vscodeUrl += `?folder=/home/coder/workspace`
3 years ago
const systemId = Cookie.get('admin-systemId')
4 years ago
export default {
10 months ago
/**
* @description 域名
*/
host,
/**
* @description 是否本地
*/
isDev,
/**
* @description 测试服
*/
isTest,
/**
* @description 是否是河海版本
*/
isHh,
/**
* @description 是否智信云
*/
isZxy,
/**
* @description 系统主题色
* 如果有多个systemId则显示系统7的主题色
*/
defaultSystem: systemId.includes(',') ? 7 : systemId,
/**
* 银行系统
**/
bankPath,
/**
* vscode地址
**/
vscodeUrl,
/**
* @description 长时间未操作自动退出登录时间
*/
autoLogoutTime: 1000 * 60 * 60 * 3
4 years ago
}