Administrator
2022-01-22 b6ed539c8ca4f41c3e994b263f2ae9d659a63c74
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
        }
    })
}