This commit is contained in:
qsh
2025-04-22 15:18:08 +08:00
parent 5098a5cf01
commit ff3f4d9e47
4 changed files with 37 additions and 2 deletions

View File

@@ -54,3 +54,8 @@ export const getLinkHistorySalary = async () => {
export const getCommissionDetail = async (params) => {
return await request.get({ url: '/admin-api/oa/user-salary-grant/detail', params })
}
// 发送工资条通知
export const sendSalaryNotice = (data) => {
return request.post({ url: '/admin-api/oa/user-salary-grant/pushUserSalaryGrantDetail', data })
}