This commit is contained in:
Pengxiansen
2025-02-24 16:51:13 +08:00
parent c0e9f9e3b7
commit 8627d11239
6 changed files with 164 additions and 70 deletions

View File

@@ -41,7 +41,10 @@ export const deleteTask = (ids) => http.get('/professional/task/delete/' + ids)
//获取岗位
export const getStdPosition = (obj) => http.get('/professional/compulsory/getStdPositionList', { params: obj })
//获取Band
export const getBandList = (obj) => http.get('/professional/compulsory/getBandList', { params: obj })
export const getBandList = (obj) => http.get('/professional/allocation/getBandList', { params: obj })
//获取Band
export const getOrgList = (obj) => http.get('/professional/allocation/getOrgList', { params: obj })
//获取职级
export const getQualsLevelCode = (obj) => http.get('/professional/compulsory/getQualsLevelCodeList', { params: obj })
@@ -49,7 +52,7 @@ export const getQualsLevelCode = (obj) => http.get('/professional/compulsory/get
export const downLoadImpTemplate = () => http.post(`/professional/allocation/downloadTemplate.do`)
//列表排序
export const toSortTask = (ids) => http.get(`/professional/task/sortTask/` + ids)
export const toSortTask = (ids, type) => http.get(`/professional/task/sortTask/${ids}?type=${type}`)
//删除学员
export const batchDelStudents = (ids) => http.get(`/professional/allocation/batchDelStudents/` + ids)
@@ -88,7 +91,7 @@ export const boeuGrowthPlatePageList = (obj) => http.post('/boeu/growth/pageList
// 是否按顺序学习
export const openOrCloseSortSwitch = (growthId) => http.get('/professional/task/openOrCloseSortSwitch/' + growthId,)
export const openOrCloseSortSwitch = (growthId, type) => http.get(`/professional/task/openOrCloseSortSwitch/${growthId}?type=${type}`,)
// 新建专业力必修
export const saveGrowth = (data) => http.post('/professional/compulsory/saveGrowth', data)