Administrator
2022-01-20 110682b80a5de00394ebef0ee66ef7ab73c6b5e3
src/api/examapi/examination.js
@@ -53,4 +53,27 @@
        method: 'post',
        data: row
    })
}
export const getExamStatistics = (current, size, params) => {
    return request({
        url: '/api/exampaper/getExamStatistics',
        method: 'get',
        params: {
            ...params,
            current,
            size
        }
    })
}
export const getExamInfoByExamId = (current, size, params) => {
    return request({
        url: '/api/exampaper/getExamInfoByExamId',
        method: 'get',
        params: {
            ...params,
            current,
            size
        }
    })
}