import request from '@/utils/request'
|
|
export function listStudent(query) {
|
return request({
|
url: '/th/student/list/page',
|
method: 'get',
|
params: query
|
})
|
}
|
|
|
export function listRecord(query) {
|
return request({
|
url: '/th/study/record/list/page',
|
method: 'get',
|
params: query
|
})
|
}
|
|
export function listExam(query) {
|
return request({
|
url: '/th/exam/record/list/page',
|
method: 'get',
|
params: query
|
})
|
}
|
|
|
export function listQuestion(query) {
|
return request({
|
url: '/th/question/bank/page',
|
method: 'get',
|
params: query
|
})
|
}
|
|
export function listBatch(query) {
|
return request({
|
url: 'th/batch/list/page',
|
method: 'get',
|
params: query
|
})
|
}
|
|
export function periodDetail(uuid) {
|
return request({
|
url: '/th/batch/period/' + uuid,
|
method: 'get'
|
})
|
}
|
|
export function studentDetail(uuid) {
|
return request({
|
url: '/th/batch/student/' + uuid,
|
method: 'get'
|
})
|
}
|
|
|
export function studentCourseDetail(uuid) {
|
return request({
|
url: '/th/course/student/' + uuid,
|
method: 'get'
|
})
|
}
|