mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-09 02:46:44 +08:00
8 lines
450 B
JavaScript
8 lines
450 B
JavaScript
// import ajax from '@/utils/xajax.js'
|
|
import ajax from '../ajax';
|
|
// const baseURL = process.env.VUE_APP_GROWTH_API_PATH;
|
|
const baseURL = '/growth';
|
|
// 查询专业力必修列表
|
|
export const listData = (obj) => ajax.get(baseURL, '/professional/student/studentGrowthList', { params: obj })
|
|
// 查询专业力统计
|
|
export const getTotalGrowthTaskDetail = (obj) => ajax.get(baseURL, '/professional/student/getTotalGrowthTaskDetail', { params: obj }) |