Administrator
2022-05-06 6a7b5f379f8d3e8b6d004bdf347cf1e86f3efdaf
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: {}
    })
}