liuyg
2021-08-18 9d56906043daf0b720ccc2713505ed58baa389c3
1
2
3
4
5
6
7
8
9
10
11
import request from '@/router/axios'
 
export const getExamScore = (param) => {
    return request({
        url: '/api/examScore/details',
        method: 'get',
        params: {
            ...param
        }
    })
}