liuyg
2021-08-18 f52d349a08b6d042fb190cc6c06c622089e70778
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
        }
    })
}