10 lines
284 B
JavaScript
10 lines
284 B
JavaScript
const getAllAlbum = async () => {
|
|
const {data} = await $.get('/platform/trainEdu/album/getAllAlbum')
|
|
return data
|
|
}
|
|
|
|
const getVideoType = async () => {
|
|
const resp = await $.get('/platform/trainEdu/type/pageData', {pageForm: 1, pageSize: 10000})
|
|
return resp.data.list
|
|
}
|