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.

60 lines
3.2 KiB

4 years ago
let host = ''
4 years ago
// 科大接口切换,参数里带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'
4 years ago
}else{
let url = location.host;
4 years ago
// 职站中台接口切换
if(url.includes('120.78.198.231')){
host = 'http://120.78.198.231'; // 职站测试服
4 years ago
}else if(url.includes('occupationlab.com')){
host = 'http://www.occupationlab.com'; // 职站正式服
4 years ago
}else if(url.includes('10.196.131.73')){
host = 'http://10.196.131.73'; // 河海版
}else if (url.includes('120.78.127.12')) {
host = 'http://120.78.127.12'; // 巢湖版
} else {
host = 'http://39.108.250.202'; // 中台
4 years ago
}
4 years ago
}
let host1 = 'http://39.108.250.202:8080';
let uploadURL = 'http://8.134.8.197:8001';
4 years ago
export default {
fileupload: `${uploadURL}/oss/manage/fileupload`,
4 years ago
// 职站
4 years ago
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`,
4 years ago
queryUserIds:`${host}/liuwanr/userInfo/queryUserIds`,
4 years ago
4 years ago
// 科大子系统
queryPoint: `${host}/kdSys/queryPoint`,
querySubject: `${host}/kdSys/querySubject`,
queryItem: `${host}/kdSys/queryItem`,
4 years ago
4 years ago
// 科大平台
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`,
// 川大子系统
4 years ago
firstLevel: `${host1}/sichuan/point/firstLevel`,
secondaryLevel: `${host1}/sichuan/point/secondaryLevel`,
thirdLevel: `${host1}/sichuan/point/thirdLevel`,
}