Administrator
2022-06-15 47a0f58d4334939b08a55b9356f94de23c8b1367
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
        }
    })
}