Administrator
2022-03-01 dacd3a1471c378af02fa241ebe4f47afb168409e
src/api/examapi/performance.js
@@ -20,11 +20,26 @@
    })
}
export const updateAbsent = (row) => {
    return request({
        url: '/api/examScore/updateAbsent',
        method: 'post',
        data: row
    })
}
export const updateGrade = (row) => {
    return request({
        url: '/api/scoreAuditRecords/scoreUpdateApply',
        method: 'post',
        data: row
    })
}
export const getNowDate = () => {
    return request({
        url: '/api/examScore/getNowDate',
        method: 'get',
        params: {}
    })
}