diff --git a/src/components/page/AddProject.vue b/src/components/page/AddProject.vue index 2d77de1..967b38b 100644 --- a/src/components/page/AddProject.vue +++ b/src/components/page/AddProject.vue @@ -1067,7 +1067,7 @@ }else{ href = `${host}jdTrials/#/?systemId=${systemId}&userId=${this.userLoginId}&token=${this.token}&referrer=${btoa(location.href)}` } - if(process.env.NODE_ENV === 'development') href = `http://192.168.31.154:8087/#/?systemId=${systemId}&userId=${this.userLoginId}&token=${this.token}&referrer=${btoa(location.href)}` + // if(process.env.NODE_ENV === 'development') href = `http://192.168.31.154:8087/#/?systemId=${systemId}&userId=${this.userLoginId}&token=${this.token}&referrer=${btoa(location.href)}` } location.href = href }, diff --git a/src/config/index.js b/src/config/index.js index d9c94b9..ac189cc 100644 --- a/src/config/index.js +++ b/src/config/index.js @@ -1,10 +1,10 @@ const isHh = location.host.includes('10.196.131.73') //是否是河海版本 -const isBeta = location.host.includes('liuwanr.cn') //是否是职站测试 +const isBeta = process.env.NODE_ENV === 'development' || location.host.includes('liuwanr.cn') //是否是职站测试 export default { /** * @description 域名切换,liuwan:职站测试环境,occupationlab.com:职站正式环境,10.196.131.73:河海版本 */ - host: (process.env.NODE_ENV === 'development' || location.host.includes('liuwanr.cn')) ? 'http://www.liuwanr.cn' : (location.host.includes('10.196.131.73') ? 'http://10.196.131.73' : 'http://www.occupationlab.com'), + host: (process.env.NODE_ENV === 'development' || location.host.includes('liuwanr.cn')) ? 'http://www.liuwanr.cn/' : (location.host.includes('10.196.131.73') ? 'http://10.196.131.73/' : 'http://www.occupationlab.com/'), /** * @description 是否是河海版本 */ @@ -20,8 +20,7 @@ export default { /** * @description 系统列表 */ - systemList: isHh ? [ - { + systemList: isHh ? [{ id: 1, label: '智信云Python程序设计教学系统' } @@ -29,30 +28,13 @@ export default { id: 4, label: '智信云经济金融建模实验教学系统' }, - // { - // id: 5, - // label: 'Python可视化实验教学系统' - // }, { id: 6, label: '智信云金融随机过程实验教学系统' },{ id: 7, label: '智信云量化投资策略建模实验教学系统' - }, - // { - // id: 8, - // label: '大数据分析实验教学系统' - // }, - // { - // id: 9, - // label: 'Python数据清洗教学实验系统' - // },{ - // id: 10, - // label: 'Python数据采集(爬虫)教学实验系统' - // } - ] : (isBeta ? [ - { + },] : (isBeta ? [{ id: 1, label: 'Python程序设计教学系统' } @@ -78,27 +60,16 @@ export default { },{ id: 8, label: '大数据分析实验教学系统' - }, - { + },{ id: 9, label: 'Python数据清洗教学实验系统' },{ id: 10, label: 'Python数据采集(爬虫)教学实验系统' - } - ] : [ - { + }] : [{ id: 1, label: 'Python程序设计教学系统' - } - // ,{ - // id: 2, - // label: '跨国仿真系统' - // },{ - // id: 3, - // label: '期权期货系统' - // } - ,{ + },{ id: 4, label: '经济金融建模实验教学系统' },{ @@ -113,15 +84,7 @@ export default { },{ id: 8, label: '大数据分析实验教学系统' - }, - // { - // id: 9, - // label: 'Python数据清洗教学实验系统' - // },{ - // id: 10, - // label: 'Python数据采集(爬虫)教学实验系统' - // } - ]), + }]), /** * @description 是否使用国际化,默认为false * 如果不使用,则需要在路由中给需要在菜单中展示的路由设置meta: {title: 'xxx'} diff --git a/src/utils/api.js b/src/utils/api.js index a9aaf17..0fdc100 100644 --- a/src/utils/api.js +++ b/src/utils/api.js @@ -4,167 +4,167 @@ import config from '@/config' // let host = 'http://192.168.31.152:9090'//榕 // let host = 'http://192.168.31.140:8090'//7 let host = config.host -let host1 = 'http://39.108.250.202:8080' +let host1 = 'http://39.108.250.202:8080/' // let loginhost = 'http://www.liuwanr.cn' -let uploadURL = 'http://8.134.8.197:8001' +let uploadURL = 'http://8.134.8.197:8001/' export default { - fileupload: `${uploadURL}/oss/manage/fileupload`, - logins: `${host}/liuwanr/userInfo/adminLogins`, //登录 - queryToken: `${host}/liuwanr/userInfo/queryToken`, + fileupload: `${uploadURL}oss/manage/fileupload`, + logins: `${host}liuwanr/userInfo/adminLogins`, //登录 + queryToken: `${host}liuwanr/userInfo/queryToken`, - updateLogInNumber: `${host}/liuwanr/userInfo/updateLogInNumber`, //用户登录修改登录次数和登陆时间 - uploadUserAvatars: `${host}/liuwanr/userInfo/uploadUserAvatars`, //上传头像 - queryProvince: `${host}/liuwanr/province/queryProvince`, //查询省份 - queryCity: `${host}/liuwanr/city/queryCity`, //查询城市 - querySchoolData: `${host}/liuwanr/customer/querySchool`, //根据学校名称查询学校信息 + updateLogInNumber: `${host}liuwanr/userInfo/updateLogInNumber`, //用户登录修改登录次数和登陆时间 + uploadUserAvatars: `${host}liuwanr/userInfo/uploadUserAvatars`, //上传头像 + queryProvince: `${host}liuwanr/province/queryProvince`, //查询省份 + queryCity: `${host}liuwanr/city/queryCity`, //查询城市 + querySchoolData: `${host}liuwanr/customer/querySchool`, //根据学校名称查询学校信息 - queryAccountIsExist:`${host}/liuwanr/userInfo/queryAccountIsExist`,//查询员工,学生账号是否存在接口 - queryWorkNumberIsExist:`${host}/liuwanr/userInfo/queryWorkNumberIsExist`,//查询学号、工号是否存在 - querySchool: `${host}/liuwanr/customer/querySchool`, //根据学校名称查询学校信息 + queryAccountIsExist:`${host}liuwanr/userInfo/queryAccountIsExist`,//查询员工,学生账号是否存在接口 + queryWorkNumberIsExist:`${host}liuwanr/userInfo/queryWorkNumberIsExist`,//查询学号、工号是否存在 + querySchool: `${host}liuwanr/customer/querySchool`, //根据学校名称查询学校信息 - queryPersonalCenter:`${host}/liuwanr/personalCenter/queryPersonalCenter`, - addStaffPro: `${host}/liuwanr/staffProfessionalArchitecture/addStaffProfessionalArchitecture`, //添加员工专业 - queryStaffPro: `${host}/liuwanr/staffProfessionalArchitecture/queryAllStaffProfessionalArchitecture`, //查询员工专业 - deleteStaffPro: `${host}/liuwanr/staffProfessionalArchitecture/deleteStaffProfessionalArchitecture`, //删除员工专业 - deleteStaffGrade: `${host}/liuwanr/staffGrade/deleteStaffGrade`, //删除员工部门 - updateStaffPro: `${host}/liuwanr/staffProfessionalArchitecture/updateStaffProfessionalArchitecture`, //编辑员工专业 - queryStaffGrade: `${host}/liuwanr/staffGrade/queryStaffGrade`, //查询员工部门 - queryStaffGradeDetails: `${host}/liuwanr/staffGrade/queryStaffGradeDetails`, //查询员工部门详情 - addStaffGrade: `${host}/liuwanr/staffGrade/addStaffGrade`, //新增员工部门 - updateStaffGrade: `${host}/liuwanr/staffGrade/updateStaffGrade`, //编辑员工部门 - queryCourseDiscipline: `${host}/liuwanr/course/queryCourseDiscipline`, //查询课程学科 - queryCourseProfessionalClass: `${host}/liuwanr/course/queryCourseProfessionalClass`, //查询专业类 - queryCourseProfessional: `${host}/liuwanr/course/queryCourseProfessional`, //查询专业 - queryPhone: `${host}/liuwanr/user/queryPhone`, //查询电话是否存在 - queryEmail: `${host}/liuwanr/user/queryEmail`, //查询邮箱是否存在 - queryStaffPAN:`${host}/liuwanr/staffProfessionalArchitecture/queryStaffPAN`,//查询员工专业是否存在 + queryPersonalCenter:`${host}liuwanr/personalCenter/queryPersonalCenter`, + addStaffPro: `${host}liuwanr/staffProfessionalArchitecture/addStaffProfessionalArchitecture`, //添加员工专业 + queryStaffPro: `${host}liuwanr/staffProfessionalArchitecture/queryAllStaffProfessionalArchitecture`, //查询员工专业 + deleteStaffPro: `${host}liuwanr/staffProfessionalArchitecture/deleteStaffProfessionalArchitecture`, //删除员工专业 + deleteStaffGrade: `${host}liuwanr/staffGrade/deleteStaffGrade`, //删除员工部门 + updateStaffPro: `${host}liuwanr/staffProfessionalArchitecture/updateStaffProfessionalArchitecture`, //编辑员工专业 + queryStaffGrade: `${host}liuwanr/staffGrade/queryStaffGrade`, //查询员工部门 + queryStaffGradeDetails: `${host}liuwanr/staffGrade/queryStaffGradeDetails`, //查询员工部门详情 + addStaffGrade: `${host}liuwanr/staffGrade/addStaffGrade`, //新增员工部门 + updateStaffGrade: `${host}liuwanr/staffGrade/updateStaffGrade`, //编辑员工部门 + queryCourseDiscipline: `${host}liuwanr/course/queryCourseDiscipline`, //查询课程学科 + queryCourseProfessionalClass: `${host}liuwanr/course/queryCourseProfessionalClass`, //查询专业类 + queryCourseProfessional: `${host}liuwanr/course/queryCourseProfessional`, //查询专业 + queryPhone: `${host}liuwanr/user/queryPhone`, //查询电话是否存在 + queryEmail: `${host}liuwanr/user/queryEmail`, //查询邮箱是否存在 + queryStaffPAN:`${host}liuwanr/staffProfessionalArchitecture/queryStaffPAN`,//查询员工专业是否存在 // 个人中心 - userinfo:`${host}/evaluation/tms/userInfo/userinfo`, - userinfoUpdate:`${host}/evaluation/tms/userInfo/updateUser`, - sendEmailCode:`${host}/evaluation/tms/user/sendEmailCode`,//发送邮箱验证码 - bingEmail:`${host}/evaluation/tms/user/bingEmail`,//邮箱验证并更新 - sendPhoneCode:`${host}/evaluation/tms/user/sendPhoneCode`,//发送手机验证码 - bindPhone:`${host}/evaluation/tms/user/bindPhone`,//校验手机验证码 - examinePassword:`${host}/evaluation/tms/user/examinePassword`,//更换密码 + userinfo:`${host}evaluation/tms/userInfo/userinfo`, + userinfoUpdate:`${host}evaluation/tms/userInfo/updateUser`, + sendEmailCode:`${host}evaluation/tms/user/sendEmailCode`,//发送邮箱验证码 + bingEmail:`${host}evaluation/tms/user/bingEmail`,//邮箱验证并更新 + sendPhoneCode:`${host}evaluation/tms/user/sendPhoneCode`,//发送手机验证码 + bindPhone:`${host}evaluation/tms/user/bindPhone`,//校验手机验证码 + examinePassword:`${host}evaluation/tms/user/examinePassword`,//更换密码 // 测评管理 - list: `${host}/evaluation/tms/questions/list`, //分页加条件查询试题信息 - info: `${host}/evaluation/tms/evaluationrules/info`, //测评规则信息的展示 - update: `${host}/evaluation/tms/evaluationrules/update`, //修改测评规则信息 - delete: `${host}/evaluation/tms/questions/delete`, //批量删除试题信息 - questionsTemplate: `${host}/template/试题导入模板.xlsx`, //excel模板文件下载 - import: `${host}/evaluation/tms/questions/import`, //通过excel批量导入 - infoId: `${host}/evaluation/tms/questions/info/`, //根据试题id查询试题详情信息 - isenable: `${host}/evaluation/tms/questions/isenable`, //是否禁用试题 - save: `${host}/evaluation/tms/questions/save`, //新增一道试题 - questionsUpdate: `${host}/evaluation/tms/questions/update`, //根据试题id修改试题信息 - upload: `${host}/evaluation/tms/questions/upload`, //excel模板文件上传 - export_failure: `${host}/evaluation/tms/questions/export_failure`, //导出导入失败的数据和失败原因 + list: `${host}evaluation/tms/questions/list`, //分页加条件查询试题信息 + info: `${host}evaluation/tms/evaluationrules/info`, //测评规则信息的展示 + update: `${host}evaluation/tms/evaluationrules/update`, //修改测评规则信息 + delete: `${host}evaluation/tms/questions/delete`, //批量删除试题信息 + questionsTemplate: `${host}template/试题导入模板.xlsx`, //excel模板文件下载 + import: `${host}evaluation/tms/questions/import`, //通过excel批量导入 + infoId: `${host}evaluation/tms/questions/info/`, //根据试题id查询试题详情信息 + isenable: `${host}evaluation/tms/questions/isenable`, //是否禁用试题 + save: `${host}evaluation/tms/questions/save`, //新增一道试题 + questionsUpdate: `${host}evaluation/tms/questions/update`, //根据试题id修改试题信息 + upload: `${host}evaluation/tms/questions/upload`, //excel模板文件上传 + export_failure: `${host}evaluation/tms/questions/export_failure`, //导出导入失败的数据和失败原因 - expDelete: `${host}/evaluation/tms/exp/delete`, //删除实验教学 - expList: `${host}/evaluation/tms/exp/list`, //实验教学列表 - expSave: `${host}/evaluation/tms/exp/save`, //添加实验教学 - expUpdate: `${host}/evaluation/tms/exp/update`, //修改实验教学 - expInfo: `${host}/evaluation/tms/exp/getById/`, //实验教学详情 - expCheck: `${host}/evaluation/tms/exp/check`, //实验名称判重 - getInvitationCode: `${host}/evaluation/tms/exp/getInvitationCode`, //查询邀请码是否存在 - expInfo1: `${host}/evaluation/tms/exp/upload`, //实验教学提前结束 + expDelete: `${host}evaluation/tms/exp/delete`, //删除实验教学 + expList: `${host}evaluation/tms/exp/list`, //实验教学列表 + expSave: `${host}evaluation/tms/exp/save`, //添加实验教学 + expUpdate: `${host}evaluation/tms/exp/update`, //修改实验教学 + expInfo: `${host}evaluation/tms/exp/getById/`, //实验教学详情 + expCheck: `${host}evaluation/tms/exp/check`, //实验名称判重 + getInvitationCode: `${host}evaluation/tms/exp/getInvitationCode`, //查询邀请码是否存在 + expInfo1: `${host}evaluation/tms/exp/upload`, //实验教学提前结束 - queryAllManagements: `${host}/project/ProjectManagement/queryAllManagements`, //项目管理列表信息 - queryManagements: `${host}/project/ProjectManagement/queryManagements`, //项目管理列表信息 - addRole: `${host}/project/ProjectManagement/addRole`, //新增案例对象 - avgValues: `${host}/project/ProjectManagement/avgValues`, //平均分配分值 - getByRoleId: `${host}/project/ProjectManagement/getByRoleId`, //根据角色id查询信息 - getByjudgmentPointsId: `${host}/project/ProjectManagement/getByjudgmentPointsId`, //实验任务表格信息的展示 - queryAllJudgmentPoints: `${host}/project/ProjectManagement/queryAllJudgmentPoints`, //添加判分点面板的数据展示+条件筛选 - getProjectId: `${host}/project/ProjectManagement/getProjectId`, //根据项目管理id查询对应信息 - updateProjectManagement: `${host}/project/ProjectManagement/updateProjectManagement`, //编辑项目管理 - addProjectManagement: `${host}/project/ProjectManagement/addProjectManagement`, //添加项目管理 - removeProjectManagement: `${host}/project/ProjectManagement/removeProjectManagement`, //删除 - getJudgmentPoints: `${host}/project/ProjectManagement/getJudgmentPoints`, //复制项目获取数据 - getZZJudgmentPoints: `${host}/project/ProjectManagement/getZZJudgmentPoints`, //复制项目获取数据 - updateRole: `${host}/project/ProjectManagement/updateRole`, //修改实验数据—角色信息 - isNameExistis: `${host}/project/ProjectManagement/isNameExistis`, //项目名称是否存在 - QueryPfdInformation: `${host}/judgment/pointOfJudgement/queryPfdInformation`, //判分点详细信息 - addProjectManagementTrad: `${host}/project/ProjectManagement/newAddProjectManagement`, - getTrdingJudgmentPoints: `${host}/project/ProjectManagement/getTrdingJudgmentPoints`, - updateProjectManagementTrad: `${host}/project/ProjectManagement/newUpdateProjectManagement`, - enableProject: `${host}/project/ProjectManagement/enable`, - QueryPointOfJudgement: `${host}/judgment/pointOfJudgement/queryPointOfJudgement`, //判分点列表查询 - queryUserIds:`${host}/liuwanr/userInfo/queryUserIds`, + queryAllManagements: `${host}project/ProjectManagement/queryAllManagements`, //项目管理列表信息 + queryManagements: `${host}project/ProjectManagement/queryManagements`, //项目管理列表信息 + addRole: `${host}project/ProjectManagement/addRole`, //新增案例对象 + avgValues: `${host}project/ProjectManagement/avgValues`, //平均分配分值 + getByRoleId: `${host}project/ProjectManagement/getByRoleId`, //根据角色id查询信息 + getByjudgmentPointsId: `${host}project/ProjectManagement/getByjudgmentPointsId`, //实验任务表格信息的展示 + queryAllJudgmentPoints: `${host}project/ProjectManagement/queryAllJudgmentPoints`, //添加判分点面板的数据展示+条件筛选 + getProjectId: `${host}project/ProjectManagement/getProjectId`, //根据项目管理id查询对应信息 + updateProjectManagement: `${host}project/ProjectManagement/updateProjectManagement`, //编辑项目管理 + addProjectManagement: `${host}project/ProjectManagement/addProjectManagement`, //添加项目管理 + removeProjectManagement: `${host}project/ProjectManagement/removeProjectManagement`, //删除 + getJudgmentPoints: `${host}project/ProjectManagement/getJudgmentPoints`, //复制项目获取数据 + getZZJudgmentPoints: `${host}project/ProjectManagement/getZZJudgmentPoints`, //复制项目获取数据 + updateRole: `${host}project/ProjectManagement/updateRole`, //修改实验数据—角色信息 + isNameExistis: `${host}project/ProjectManagement/isNameExistis`, //项目名称是否存在 + QueryPfdInformation: `${host}judgment/pointOfJudgement/queryPfdInformation`, //判分点详细信息 + addProjectManagementTrad: `${host}project/ProjectManagement/newAddProjectManagement`, + getTrdingJudgmentPoints: `${host}project/ProjectManagement/getTrdingJudgmentPoints`, + updateProjectManagementTrad: `${host}project/ProjectManagement/newUpdateProjectManagement`, + enableProject: `${host}project/ProjectManagement/enable`, + QueryPointOfJudgement: `${host}judgment/pointOfJudgement/queryPointOfJudgement`, //判分点列表查询 + queryUserIds:`${host}liuwanr/userInfo/queryUserIds`, // 学生管理 - addStudent: `${host}/evaluation/tms/student/zzAddStudent`, - daleteStudent: `${host}/evaluation/tms/student/daleteStudent`, - disableAccount: `${host}/evaluation/tms/student/disableAccount`, - queryStudent: `${host}/evaluation/tms/student/queryStudent`, - reSetPassword: `${host}/evaluation/tms/student/reSetPassword`, - updateStudent: `${host}/evaluation/tms/student/updateStudent`, - downloadStudent: `${host}/evaluation/tms/student/download`, - uploadFile: `${host}/evaluation/tms/student/uploadFile`, - export_failureStudent: `${host}/evaluation/tms/student/export_failure`, - queryAccountStudent:`${host}/evaluation/tms/student/queryAccount`, - studentTemplate:`${host}/template/student.xlsx`, + addStudent: `${host}evaluation/tms/student/zzAddStudent`, + daleteStudent: `${host}evaluation/tms/student/daleteStudent`, + disableAccount: `${host}evaluation/tms/student/disableAccount`, + queryStudent: `${host}evaluation/tms/student/queryStudent`, + reSetPassword: `${host}evaluation/tms/student/reSetPassword`, + updateStudent: `${host}evaluation/tms/student/updateStudent`, + downloadStudent: `${host}evaluation/tms/student/download`, + uploadFile: `${host}evaluation/tms/student/uploadFile`, + export_failureStudent: `${host}evaluation/tms/student/export_failure`, + queryAccountStudent:`${host}evaluation/tms/student/queryAccount`, + studentTemplate:`${host}template/student.xlsx`, // 员工管理 - addStaff: `${host}/evaluation/tms/system/addStaff`, - daleteBatchStaff: `${host}/evaluation/tms/system/daleteBatchStaff`, - queryStaff: `${host}/evaluation/tms/system/queryStaff`, - querystaffDetail: `${host}/evaluation/tms/system/querystaffDetail`, - updateStaff: `${host}/evaluation/tms/system/updateStaff`, - downloadStaff: `${host}/evaluation/tms/system/download`, - export_failureStaff: `${host}/evaluation/tms/system/export_failure`, - uploadFileStaff: `${host}/evaluation/tms/system/uploadFile`, - queryAccountStaff:`${host}/evaluation/tms/system/queryAccount`, - resetPwd:`${host}/evaluation/tms/system/resetPwd`, - dalStaffByStaffGradeId:`${host}/evaluation/tms/system/dalStaffByStaffGradeId`, - dalStaffByProfessionalId:`${host}/evaluation/tms/system/dalStaffByProfessionalId`, - staffTemplate:`${host}/template/staff.xlsx`, + addStaff: `${host}evaluation/tms/system/addStaff`, + daleteBatchStaff: `${host}evaluation/tms/system/daleteBatchStaff`, + queryStaff: `${host}evaluation/tms/system/queryStaff`, + querystaffDetail: `${host}evaluation/tms/system/querystaffDetail`, + updateStaff: `${host}evaluation/tms/system/updateStaff`, + downloadStaff: `${host}evaluation/tms/system/download`, + export_failureStaff: `${host}evaluation/tms/system/export_failure`, + uploadFileStaff: `${host}evaluation/tms/system/uploadFile`, + queryAccountStaff:`${host}evaluation/tms/system/queryAccount`, + resetPwd:`${host}evaluation/tms/system/resetPwd`, + dalStaffByStaffGradeId:`${host}evaluation/tms/system/dalStaffByStaffGradeId`, + dalStaffByProfessionalId:`${host}evaluation/tms/system/dalStaffByProfessionalId`, + staffTemplate:`${host}template/staff.xlsx`, // 角色权限 - rolePermissionList:`${host}/evaluation/sys-permission/rolePermissionList`, - saveRolePermission:`${host}/evaluation/sys-permission/saveRolePermission`, - updateRolePermission:`${host}/evaluation/sys-permission/updateRolePermission`, - delRolePermission:`${host}/evaluation/sys-permission/delRolePermission`, - queryPermissionArrById:`${host}/evaluation/sys-permission/queryPermissionArrById`, - roleTree:`${host}/evaluation/sys-permission/tree`, + rolePermissionList:`${host}evaluation/sys-permission/rolePermissionList`, + saveRolePermission:`${host}evaluation/sys-permission/saveRolePermission`, + updateRolePermission:`${host}evaluation/sys-permission/updateRolePermission`, + delRolePermission:`${host}evaluation/sys-permission/delRolePermission`, + queryPermissionArrById:`${host}evaluation/sys-permission/queryPermissionArrById`, + roleTree:`${host}evaluation/sys-permission/tree`, // 成绩管理 - getImitationAchievement: `${host}/evaluation/Achievement/getImitationAchievement`, - getTeachAchievement: `${host}/evaluation/Achievement/getTeachAchievement`, - addReport: `${host}/evaluation/Achievement/addReport`, - deleteReport: `${host}/evaluation/Achievement/deleteReport`, - deleteReportById: `${host}/evaluation/Achievement/deleteReportById`, - exportAchievement:`${host}/evaluation/Achievement/exportAchievement`, - // queryAchievement:`${host}/evaluation/Achievement/queryAchievement`, - queryAchievement:`${host}/evaluation/Achievement/list`, - queryAchievementNew:`${host}/evaluation/Achievement/newList`, - queryEvaluationReport:`${host}/evaluation/Achievement/queryEvaluationReport`, - queryReport:`${host}/evaluation/Achievement/queryReport`, - queryArchievement: `${host}/evaluation/tms/classTech/queryExperimentalReport`, //查看教学实验报告 - queryVirtualReport: `${host}/evaluation/tms/classTech/queryVirtualReport`, //查看虚仿实验报告 + getImitationAchievement: `${host}evaluation/Achievement/getImitationAchievement`, + getTeachAchievement: `${host}evaluation/Achievement/getTeachAchievement`, + addReport: `${host}evaluation/Achievement/addReport`, + deleteReport: `${host}evaluation/Achievement/deleteReport`, + deleteReportById: `${host}evaluation/Achievement/deleteReportById`, + exportAchievement:`${host}evaluation/Achievement/exportAchievement`, + // queryAchievement:`${host}evaluation/Achievement/queryAchievement`, + queryAchievement:`${host}evaluation/Achievement/list`, + queryAchievementNew:`${host}evaluation/Achievement/newList`, + queryEvaluationReport:`${host}evaluation/Achievement/queryEvaluationReport`, + queryReport:`${host}evaluation/Achievement/queryReport`, + queryArchievement: `${host}evaluation/tms/classTech/queryExperimentalReport`, //查看教学实验报告 + queryVirtualReport: `${host}evaluation/tms/classTech/queryVirtualReport`, //查看虚仿实验报告 // 教师评语 - addComment: `${host}/evaluation/comment/addComment`, - queryComment: `${host}/evaluation/comment/queryComment`, - updateComment:`${host}/evaluation/comment/updateComment`, + addComment: `${host}evaluation/comment/addComment`, + queryComment: `${host}evaluation/comment/queryComment`, + updateComment:`${host}evaluation/comment/updateComment`, // 老师签名照 - daleteSignature: `${host}/evaluation/signature/daleteSignature`, - querySignature: `${host}/evaluation/signature/querySignature`, - uploadSignature:`${host}/evaluation/signature/uploadSignature`, + daleteSignature: `${host}evaluation/signature/daleteSignature`, + querySignature: `${host}evaluation/signature/querySignature`, + uploadSignature:`${host}evaluation/signature/uploadSignature`, // 判分点 - queryListTrading: `${host}/judgment/tradingJudgmentPoints/query`, - queryDetailsTrading: `${host}/judgment/tradingJudgmentPoints/queryDetails`, + queryListTrading: `${host}judgment/tradingJudgmentPoints/query`, + queryDetailsTrading: `${host}judgment/tradingJudgmentPoints/queryDetails`, // 科大 - queryPoint: `${host}/kdSys/queryPoint`, - querySubject: `${host}/kdSys/querySubject`, - queryItem: `${host}/kdSys/queryItem`, + queryPoint: `${host}kdSys/queryPoint`, + querySubject: `${host}kdSys/querySubject`, + queryItem: `${host}kdSys/queryItem`, // 川大 - firstLevel: `${host1}/sichuan/point/firstLevel`, - secondaryLevel: `${host1}/sichuan/point/secondaryLevel`, - thirdLevel: `${host1}/sichuan/point/thirdLevel`, + firstLevel: `${host1}sichuan/point/firstLevel`, + secondaryLevel: `${host1}sichuan/point/secondaryLevel`, + thirdLevel: `${host1}sichuan/point/thirdLevel`, } \ No newline at end of file