智慧保安考试系统
zhongrj
2023-11-07 94749fbed0cd028acadf003e35f5fbfee56cffcc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import request from '@/router/axios'
 
export const getExamScore = (param) => {
    return request({
        url: '/api/examScore/details',
        method: 'get',
        params: {
            ...param
        }
    })
}
 
export const reselfExamScore = (scoreId) => {
    return request({
        url: '/api/examScore/refreshTrainExamInfo',
        method: 'post',
        data: {
            scoreId
        }
    })
}