Files
learning-system-mobile/api/modules/growth.js
zhangsir 2cfa2e7202 搜索
2024-06-25 19:19:38 +08:00

10 lines
649 B
JavaScript

import ajax from '@/api/manage/manageAjax.js';
export const getList = (params) => ajax.get(`/manageApi/stu/grow/getStuLearnInfo?userId=${params}`);
//获取路径图详情
export const taskList = (id) => ajax.get(`/manageApi/stu/grow/taskList?growId=${id}`);
// 获取岗位
export const getAllPosition = () => ajax.get(`/manageApi/stu/grow/getPositionOfPath`)
// 获取职级
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}`);