spring
3 天以前 a4f4241f24d171c49b52f81eae364bf79a7d7005
src/api/personnelManagement/employeeRecord.js
@@ -15,4 +15,22 @@
        method: 'get',
        params: query,
    })
}
// 员工转正
export function staffRegularize(data) {
    return request({
        url: '/staff/staffOnJob/regularize',
        method: 'post',
        data,
    })
}
// 员工调岗
export function staffTransferPost(data) {
    return request({
        url: '/staff/staffOnJob/transferPost',
        method: 'post',
        data,
    })
}