let host = '' // 科大接口切换,参数里带host的为科大,否则就是职站中台 let isKd = /&host=(\d)/.exec(location.hash) //host:{1:测试环境,2:正式环境} if(isKd){ host = isKd[1] == 1 ? 'http://122.9.154.146' : 'http://116.63.168.79' }else{ // 职站中台接口切换 if(location.host.includes('liuwanr.cn')){ host = 'http://www.liuwanr.cn' }else if(location.host.includes('occupationlab.com')){ host = 'http://www.occupationlab.com' }else{ host = 'http://39.108.250.202' } } let host1 = 'http://39.108.250.202:8080' let uploadURL = 'http://8.134.8.197:8001' export default { fileupload: `${uploadURL}/oss/manage/fileupload`, // 职站 QueryPointOfJudgement: `${host}/judgment/pointOfJudgement/queryPointOfJudgement`, //判分点列表查询 DeletePointOfJudgement: `${host}/judgment/pointOfJudgement/deletePointOfJudgement`, //判分点列表删除 QueryPfdInformation: `${host}/judgment/pointOfJudgement/queryPfdInformation`, //判分点详细信息 UpdatePointOfJudgement: `${host}/judgment/pointOfJudgement/updatePointOfJudgement`, //编辑判分点基本信息 UpdatePointOfJudgementRule: `${host}/judgment/pointOfJudgement/updatePointOfJudgementRule`, //编辑判分点规则 AddPfdgzInformation: `${host}/judgment/pointOfJudgement/addPfdgzInformation`, //新增判分规则 AddPfdInformation: `${host}/judgment/pointOfJudgement/addPfdInformation`, //新增判分点基本信息 QueryPfdgzInformation: `${host}/judgment/pointOfJudgement/queryPfdgzInformation`, //判分点规则信息查询 QueryAddgz: `${host}/judgment/pointOfJudgement/queryAddgz`, //查询新增判分点规则新增的数据 DeletePointOfJudgementRule: `${host}/judgment/pointOfJudgement/deletePointOfJudgementRule`, //删除判分点规则 UpdateIsOpen: `${host}/judgment/pointOfJudgement/updateIsOpen`, //修改判分点状态 JudgmentPointNameRepetition: `${host}/judgment/pointOfJudgement/JudgmentPointNameRepetition`, queryUserIds:`${host}/liuwanr/userInfo/queryUserIds`, // 科大子系统 queryPoint: `${host}/kdSys/queryPoint`, querySubject: `${host}/kdSys/querySubject`, queryItem: `${host}/kdSys/queryItem`, // 科大平台 queryListTrading: `${host}/judgment/tradingJudgmentPoints/query`, deleteTrading: `${host}/judgment/tradingJudgmentPoints/delete`, addTrading: `${host}/judgment/tradingJudgmentPoints/add`, queryDetailsTrading: `${host}/judgment/tradingJudgmentPoints/queryDetails`, updateTrading: `${host}/judgment/tradingJudgmentPoints/update`, updateRuleTrading: `${host}/judgment/tradingJudgmentPoints/updateRule`, deleteRuleTrading: `${host}/judgment/tradingJudgmentPoints/deleteRule`, addRule: `${host}/judgment/tradingJudgmentPoints/addRule`, // 川大子系统 firstLevel: `${host1}/sichuan/point/firstLevel`, secondaryLevel: `${host1}/sichuan/point/secondaryLevel`, thirdLevel: `${host1}/sichuan/point/thirdLevel`, }