| 123456789101112131415161718192021222324252627 |
- import axios from '@/utils/request'
- // 获取主题列表
- export function getThemeList (data) {
- return axios({
- url: 'bjdxWeb/blockly/getTypeTheme',
- method: 'get',
- data
- })
- }
- // 获取类型列表
- export function getTypeByThemeId (id) {
- return axios({
- url: 'bjdxWeb/blockly/getTypeByThemeId?id=' + id,
- method: 'get'
- })
- }
- // 根据ID获取课程列表
- export function getBlocklyByTypeId (typeId) {
- return axios({
- url: 'bjdxWeb/blockly/getBlocklyByTypeId?typeId=' + typeId,
- method: 'get'
- })
- }
|