0515 更新
This commit is contained in:
parent
399cdb256d
commit
7a37638acd
47
src/views/drivingSchool/DriveSchoolStatistics/api/index.js
Normal file
47
src/views/drivingSchool/DriveSchoolStatistics/api/index.js
Normal file
@ -0,0 +1,47 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export function getCoachList() {
|
||||
return request({
|
||||
url: '/base/dl-drive-school-coach/list',
|
||||
method: 'GET'
|
||||
})
|
||||
}
|
||||
|
||||
export function getDate(paramsObj) {
|
||||
return request({
|
||||
url: '/base/dataView/indexData',
|
||||
method: 'GET',
|
||||
params: paramsObj
|
||||
})
|
||||
}
|
||||
|
||||
export function getDetailsData(paramsObj) {
|
||||
return request({
|
||||
url: '/base/dl-drive-school-student/indexStuentList',
|
||||
method: 'GET',
|
||||
params: paramsObj
|
||||
})
|
||||
}
|
||||
|
||||
export function getStudentByCoach(paramsObj) {
|
||||
return request({
|
||||
url: '/base/drive-school-staff/pageStaff',
|
||||
method: 'GET',
|
||||
params: paramsObj
|
||||
})
|
||||
}
|
||||
|
||||
export function getExamBatch(paramsObj) {
|
||||
return request({
|
||||
url: '/examBatch/page',
|
||||
method: 'GET',
|
||||
params: paramsObj
|
||||
})
|
||||
}
|
||||
|
||||
export function getExamBatchById(id) {
|
||||
return request({
|
||||
url: '/examBatch/getById?id=' + id,
|
||||
method: 'GET'
|
||||
})
|
||||
}
|
1036
src/views/drivingSchool/DriveSchoolStatistics/index.vue
Normal file
1036
src/views/drivingSchool/DriveSchoolStatistics/index.vue
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user