ed88fd8e
yangzhi
首页数据对接
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import request from '@/utils/request'
//学历分布
export function GetEducationalBackgroundDistribution() {
return request({
url: `/DashBoard/EducationalBackgroundDistribution`,
method: 'get',
})
}
//面试进度
export function GetInterviewProgress() {
return request({
url: `/DashBoard/InterviewProgress`,
method: 'get',
})
}
//当日面试
export function GetSameDayInterview(data) {
return request({
url: `/DashBoard/SameDayInterview`,
method: 'get',
data,
params: data
})
}
|