添加生成工资条功能

This commit is contained in:
1147680382@qq.com
2025-05-29 11:30:31 +08:00
parent 71421052df
commit 943093ed5e
5 changed files with 178 additions and 519 deletions
+8
View File
@@ -237,3 +237,11 @@ export const showPayrollSheet = (data) => {
data
});
};
// 生成工资条
export function calculatePayrollSheets(year, month) {
return service({
url: `/payroll/sheets/calculate/${year}/${month}`,
method: 'post'
});
}