/** * 业务配置 * */ const url = location.host; const isDev = process.env.NODE_ENV === 'development'; // 开发环境 const isTest = url.includes('39.108.250.202'); //测试服 const isPro = url.includes('120.78.127.12'); //正式服 let jumpPath = ""; let host = ""; if (isDev) { // jumpPath = "http://39.108.250.202/judgmentPoint/"; jumpPath = "http://192.168.31.254:8087/"; // 本地调试-需要启动本地判分点系统 // host = "http://39.108.250.202:9000"; 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'// 赓 } else if (isTest) { jumpPath = "http://39.108.250.202/judgmentPoint/"; host = "http://39.108.250.202:9000"; // host = "http://39.108.250.202:9000";//线上 } else if (isPro) { jumpPath = ""; host = ""; } const Setting = { /** * 基础配置 * */ platformId: 3, // 平台标识,1职站,2数据平台,3中台 jumpPath, // 判分点系统跳转路径前缀 host, // 请求路径前缀 }; export default Setting;