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.

29 lines
1.1 KiB

const isHh = location.host.includes('10.196.131.73') //是否是河海版本
4 years ago
export default {
/**
* @description 域名切换liuwan职站测试环境occupationlab.com职站正式环境10.196.131.73河海版本
*/
host: (process.env.NODE_ENV === 'development' || location.host.includes('liuwanr.cn')) ? 'http://www.liuwanr.cn/' : (location.host.includes('10.196.131.73') ? 'http://10.196.131.73/' : 'http://www.occupationlab.com/'),
/**
* @description 是否是河海版本
*/
isHh,
4 years ago
/**
* @description 配置显示在浏览器标签的title
*/
4 years ago
title: isHh ? '经济金融建模实验教学系统' : '经济金融建模实验教学系统',
4 years ago
/**
* @description 是否使用国际化默认为false
* 如果不使用则需要在路由中给需要在菜单中展示的路由设置meta: {title: 'xxx'}
* 用来在菜单中显示文字
*/
locale: 'zh',
/**
* @description 跳转子系统链接
*/
4 years ago
systemId: 4,
/**
* @description 长时间未操作自动退出登录时间
*/
autoLogoutTime: 3600000
4 years ago
}