多体系建设信息化条统-前端
zhouwx
2025-12-02 be8d7e4f0aea2b49ac7a9963df6482864abe3502
src/api/onlineEducation/user.js
@@ -45,3 +45,27 @@
        method: 'put'
    })
}
export function getEmployeeRecordList(param) {
    return request({
        url: '/system/employee-record/selectEmployeeRecordList',
        method: 'get',
        params: param
    })
}
export function updateEmployeeRecord(data) {
    return request({
        url: '/system/employee-record/saveEmployeeRecord',
        method: 'post',
        data: data
    })
}
export function getEmployeeRecords(param) {
    return request({
        url: '/system/employee-record/getEmployeeRecordList',
        method: 'get',
        params: param
    })
}