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.

104 lines
3.4 KiB

3 years ago
/**
* 业务配置
* */
const url = location.host;
3 years ago
const isDev = process.env.NODE_ENV === "development"; // 开发环境
const isHh = url.includes("10.196.131.73"); //是否河海版本
const isCH = url.includes("120.78.127.12"); //是否巢湖版本
3 years ago
const isBeta = url.includes("120.78.198.231"); //是否职站测试
const isPro = url.includes("occupationlab.com"); //是否职站生产
const isTest = url.includes('39.108.250.202'); //是否中台测试服
3 years ago
let jumpPath = "";
let host = "";
let title = "";
if (isHh) {
// 河海
host = "http://10.196.131.73/";
title = "教师管理端";
} else if (isCH) {
// 巢湖
host = "http://120.78.127.12/";
title = "教师管理端";
} else if (isBeta) {
// 职站测试
host = "http://120.78.198.231/";
title = "职站服务端管理系统";
} else if (isPro) {
// 职站生产
host = "http://www.occupationlab.com/";
title = "职站服务端管理系统";
} else if (isTest){
jumpPath = "http://39.108.250.202/judgmentPoint/";
host = "http://39.108.250.202:9000/";
title = "职站服务端管理系统";
} else if (isDev) {
jumpPath = "http://192.168.31.154:8087/";
3 years ago
host = "http://39.108.250.202:9000/"; // 中台测试服
// host = "http://192.168.31.151:9000/"; // 榕
// host = "http://192.168.31.125:9000/"; // 坤
// host = 'http://192.168.31.137:9000/'; // 赓
title = "职站服务端管理系统";
} else {
console.log("其它版本");
}
3 years ago
const Setting = {
/**
* 基础配置
* */
platformId: 1, // 平台标识,1职站,2数据平台,3中台
3 years ago
platformType: 0, // 平台端区分:0->教师端 1->学生端 2->无端
titleSuffix: title, // 网页标题的后缀
3 years ago
routerMode: "hash", // 路由模式,可选值为 history 或 hash
showProgressBar: true, // 页面切换时,是否显示模拟的进度条
apiBaseURL: host, // 接口请求地址
jumpPath, // 判分点系统前缀
autoLogoutTime: 3600000, // 长时间未操作,自动退出登录时间
3 years ago
projectData: "sta_data", // 新增项目跳转判分点数据存储cookie的key
modalDuration: 3, // 接口请求返回错误时,弹窗的持续时间,单位:秒
3 years ago
errorModalType: "Message", // 接口请求返回错误时,弹窗的类型,可选值为 Message 或 Notice
cookiesExpires: 1, // Cookies 默认保存时间,单位:天
tokenExpires: 1296000000, // token在localStorage的时间(毫秒)
3 years ago
/**
* localStorage里保存的token的key
3 years ago
*/
3 years ago
tokenKey: "oc_server_token",
3 years ago
/**
* localStorage里保存的vuex的key
3 years ago
*/
3 years ago
storeKey: "oc_server_store",
3 years ago
/**
* 默认密码
*/
3 years ago
initialPassword: "111aaa",
3 years ago
/**
3 years ago
* 多语言配置
* */
3 years ago
i18n: {
// 默认语言
3 years ago
default: "zh",
3 years ago
// 是否根据用户电脑配置自动设置语言(仅第一次有效)
auto: false
},
/**
* 布局配置
* */
3 years ago
layout: {},
3 years ago
/**
* 功能配置
* */
// 相同路由,不同参数间进行切换,是否强力更新
sameRouteForceUpdate: false,
// 是否使用动态路由(即角色权限,开启了的话就会取后端返回的权限树来显示头部导肮和页面按钮)
3 years ago
dynamicRoute: true,
3 years ago
// 文件上传
upload: {
apiURL: "http://39.108.250.202:9000/",
3 years ago
maxSize: 30
}
3 years ago
};
export default Setting;