| | |
| | | data |
| | | }) |
| | | } |
| | | |
| | | // 日计时工资报表查询 |
| | | export function DailyWageReportSearch(data) { |
| | | return request({ |
| | | url: 'HourlyWage/DailyWageReportSearch', |
| | | method: 'get', |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // 日计时工资修改扣除时长、扣除薪资 |
| | | export function DailyWageReportUpdate(data) { |
| | | return request({ |
| | | url: 'HourlyWage/DailyWageReportUpdate', |
| | | method: 'post', |
| | | data |
| | | }) |
| | | } |
| | | |
| | | // 日计时工资报表导出 |
| | | export function DailyWageReportExcelSearch(data) { |
| | | return request({ |
| | | url: 'HourlyWage/DailyWageReportExcelSearch', |
| | | method: 'get', |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // 月计时工资报表查询 |
| | | export function MonthlyWageReportSearch(data) { |
| | | return request({ |
| | | url: 'HourlyWage/MonthlyWageReportSearch', |
| | | method: 'post', |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // 月计时工资报表导出 |
| | | export function MonthlyWageReportExcelSearch(data) { |
| | | return request({ |
| | | url: 'HourlyWage/MonthlyWageReportExcelSearch', |
| | | method: 'get', |
| | | params: data |
| | | }) |
| | | } |