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.
|
|
|
import util from '@/util'
|
|
|
|
|
|
|
|
const isHh = location.host.includes('10.196.131.73') //是否是河海版本
|
|
|
|
const isBeta = process.env.NODE_ENV === 'development' || location.host.includes('39.108.250.202') //是否是职站测试
|
|
|
|
|
|
|
|
let host = location.origin + ':9000/'
|
|
|
|
if (process.env.NODE_ENV === 'development') host = 'http://39.108.250.202:9000'
|
|
|
|
/**
|
|
|
|
* python8个系统的id和名称
|
|
|
|
* id即systemId,从cookie里取
|
|
|
|
*/
|
|
|
|
const systemId = util.getCookie('systemId')
|
|
|
|
const pythonList = [
|
|
|
|
{
|
|
|
|
id: 1,
|
|
|
|
name: 'Python程序设计教学系统'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 4,
|
|
|
|
name: '经济金融建模实验教学系统'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 5,
|
|
|
|
name: 'Python数据可视化实验教学系统'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 6,
|
|
|
|
name: '金融随机过程实验教学系统'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 7,
|
|
|
|
name: '量化投资策略建模实验教学系统'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 8,
|
|
|
|
name: '大数据分析实验教学系统'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 9,
|
|
|
|
name: 'Python数据清洗教学实验系统'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 10,
|
|
|
|
name: 'Python数据采集(爬虫)教学实验系统'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
const systemItem = pythonList.find(e => e.id == systemId)
|
|
|
|
const title = systemItem ? systemItem.name : 'Python程序设计教学系统' // 如果有匹配的python系统,则取匹配到的python,否则,默认显示python程序设计,其他地方同理
|
|
|
|
export default {
|
|
|
|
/**
|
|
|
|
* @description 域名
|
|
|
|
*/
|
|
|
|
host,
|
|
|
|
/**
|
|
|
|
* @description 是否是河海版本
|
|
|
|
*/
|
|
|
|
isHh,
|
|
|
|
/**
|
|
|
|
* @description 是否是开发/测试版本
|
|
|
|
*/
|
|
|
|
isBeta,
|
|
|
|
/**
|
|
|
|
* @description 配置显示在浏览器标签的title
|
|
|
|
*/
|
|
|
|
title,
|
|
|
|
/**
|
|
|
|
* python子系统
|
|
|
|
**/
|
|
|
|
pythonList,
|
|
|
|
/**
|
|
|
|
* @description 长时间未操作,自动退出登录时间
|
|
|
|
*/
|
|
|
|
autoLogoutTime: 3600000
|
|
|
|
}
|