添加工资查看功能

This commit is contained in:
1147680382@qq.com
2025-05-23 11:29:08 +08:00
parent df432367c6
commit 0ee4dd28b2
5 changed files with 1379 additions and 17 deletions
+27
View File
@@ -210,3 +210,30 @@ export const getFinanceAttendanceList = (params) => {
params
});
};
// 获取工资条列表
export const getPayrollSheetsList = (params) => {
return service({
url: '/payroll/sheets/list',
method: 'get',
params
});
};
// 修改工资条
export const updatePayrollSheet = (data) => {
return service({
url: '/payroll/sheets',
method: 'put',
data
});
};
// 展示工资条给员工
export const showPayrollSheet = (data) => {
return service({
url: '/payroll/sheets/show',
method: 'put',
data
});
};