mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-mobile.git
synced 2025-12-11 03:46:47 +08:00
17 lines
404 B
JavaScript
17 lines
404 B
JavaScript
/**
|
|
* 课程的操作,课程的添加,修改,列表查询,课程的审核发布等操作。
|
|
* 针对于管理员,教师的功能
|
|
*
|
|
**/
|
|
import ajax from '@/utils/growthXajax.js'
|
|
|
|
/*
|
|
专业力必修课程
|
|
*/
|
|
|
|
const baseUrl = '/growth';
|
|
// const baseUrl = ''
|
|
export const studentGrowthList = function (data) {
|
|
return ajax.get(baseUrl + '/professional/student/studentGrowthList', data);
|
|
}
|