zhongrj
2026-06-02 0299e41c6692684d943b4a206472a86ea84ea4b5
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import request from '@/router/axios'
 
// 考试列表
export const getExamList = (params) => {
    return request({
        url: '/api/exampaper/getList',
        method: 'get',
        apiKey: true,
        params
    })
}
 
// 考试须知
export const getDpDetail = () => {
    return request({
        url: '/api/exam/examinationNote/getDpDetail',
        method: 'get',
        apiKey: true,
    })
}
 
// 签到情况
export const getSignSituationPie = (params) => {
    return request({
        url: '/api/signInRecords/signSituation/pie',
        method: 'get',
        apiKey: true,
        params
    })
}
 
// 实时监控数据
export const getSignSituationBar = (params) => {
    return request({
        url: '/api/signInRecords/signSituation/bar',
        method: 'get',
        apiKey: true,
        params
    })
}
 
// 签到列表
export const getSignSituationList = (params) => {
    return request({
        url: '/api/signInRecords/signSituation/list',
        method: 'get',
        apiKey: true,
        params
    })
}
 
// 考试动态
export const getExamScoreList = (params) => {
    return request({
        url: '/api/examScore/getList',
        method: 'get',
        apiKey: true,
        params
    })
}
 
// 获取最近一次考试的日期
export const getLatestExam = (params) => {
    return request({
        url: '/api/exampaper/getLatest',
        method: 'get',
        apiKey: true,
        params
    })
}