This commit is contained in:
Pengxiansen
2025-02-14 16:01:48 +08:00
parent 02a51af4f9
commit f3abd92d23
13 changed files with 559 additions and 9 deletions

16
api/modules/growth.js Normal file
View File

@@ -0,0 +1,16 @@
/**
* 课程的操作,课程的添加,修改,列表查询,课程的审核发布等操作。
* 针对于管理员,教师的功能
*
**/
import ajax from '@/utils/growthXajax.js'
/*
专业力必修课程
*/
const baseUrl = '/growth';
// const baseUrl = ''
export const studentGrowthList = function (data) {
return ajax.get(baseUrl + '/professional/student/studentGrowthList', data);
}