| 12345678910111213141516171819202122232425262728293031323334 |
- import axios from '@/utils/request'
- // 获取年级
- export function ClassList (data) {
- return axios({
- url: 'bjdxWeb/course/getTypeGrade',
- method: 'get',
- data
- })
- }
- // 根据年级id获取教学大纲 通识课
- export function ClassOutline (id) {
- return axios({
- url: 'bjdxWeb/course/getTypeTsByGradeId?id=' + id ,
- method: 'get'
- })
- }
- // 实操课
- export function ClassOutlineSc (id) {
- return axios({
- url: 'bjdxWeb/course/getTypeScByGradeId?id=' + id ,
- method: 'get'
- })
- }
- // 根据类型id获取课程列表
- export function ClassType (typeId) {
- return axios({
- url: 'bjdxWeb/course/getCourseByTypeId?typeId=' + typeId,
- method: 'get'
- })
- }
|