This commit is contained in:
zhangsir
2024-06-27 10:57:02 +08:00
parent ec31eec938
commit 0932610f9b
6 changed files with 176 additions and 10 deletions

View File

@@ -7,4 +7,8 @@ export const getAllPosition = () => ajax.get(`/manageApi/stu/grow/getPositionOfP
// 获取职级
export const getAllBandInfo = () => ajax.get(`/manageApi/admin/thirdApi/getAllBandInfo`)
//全岗位路径
export const getFullJobPath = (params) => ajax.get(`/manageApi/stu/grow/getFullJobPath?positionIdList=${params.positionIdList}&bandCodeList=${params.bandCodeList}`);
export const getFullJobPath = (params) => ajax.get(`/manageApi/stu/grow/getFullJobPath?positionIdList=${params.positionIdList}&bandCodeList=${params.bandCodeList}`);
//外部考试
export const queryExternalExam = (params) => ajax.get(`/manageApi/external/exam/queryExternalExam?externalId=${params.externalId}&type=14`);
//外部考试点击调用
export const submitExternalExam = (params) => ajax.postJson(`/manageApi/stu/externalExam/submitExternalExam`,params);