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.

61 lines
1.7 KiB

4 years ago
/**
* 业务配置
* */
const url = location.host;
3 years ago
const isDev = process.env.NODE_ENV === 'development' // 开发环境
const isPro = url.includes('huorantech.cn') //正式服
4 years ago
let jumpPath = `${location.origin}/judgmentPoint/`
12 months ago
let sandPath = `http://121.37.12.51/sandbox` // 沙盘地址
3 years ago
let host = `${location.origin}/`
4 years ago
if (isDev) {
3 years ago
jumpPath = 'http://192.168.31.125:8087/' // 本地调试-需要启动本地判分点系统
// jumpPath = 'https://judgment.huorantech.cn/'
1 year ago
sandPath = `http://${location.hostname}:9520`
2 years ago
host = 'http://121.37.12.51/'
1 year ago
// host = 'https://huorantech.cn/'
12 months ago
host = 'http://192.168.31.217:9000/'
4 years ago
} else if (isPro) {
12 months ago
sandPath = `https://izhixinyun.com/sandbox`
jumpPath = 'https://judgment.huorantech.cn/'
4 years ago
}
const Setting = {
/**
* 基础配置
* */
platformId: 3, // 平台标识,1职站,2数据平台,3中台,4合伙人
3 years ago
platformSource: 0, // 平台来源(0中台,1职站)
1 year ago
autoLogoutTime: 1000 * 60 * 60 * 3, // 长时间未操作,自动退出登录时间
jumpPath, // 判分点系统跳转路径前缀
1 year ago
sandPath, // 沙盘地址
apiBaseURL: host, // 请求路径前缀
3 years ago
uploadURL: isDev ? 'http://121.37.12.51/' : location.origin + '/', // 阿里云oss域名
// 平台列表
platformList: [
{
id: 1,
name: '职站'
},
{
id: 2,
name: '数据平台'
},
{
id: 3,
name: '中台'
}
],
3 years ago
isDev,
isPro,
// 是否使用动态路由
2 years ago
dynamicRoute: true,
/**
* @description 默认密码
*/
2 years ago
initialPassword: '1122aa',
4 years ago
};
export default Setting;