1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
| import request from '@/utils/request'
|
| // 生产进度报表
| export function ProductionScheduleReportSearch(data) {
| return request({
| url: 'ReportManager/ProductionScheduleReportSearch',
| method: 'get',
| params: data
| })
| }
|
| // 生产进度报表导出
| export function ProductionScheduleReportExcelSearch(data) {
| return request({
| url: 'ReportManager/ProductionScheduleReportExcelSearch',
| method: 'get',
| params: data
| })
| }
|
| // 班组工资报表记录查询
| export function GroupSalaryReportSearch(data) {
| return request({
| url: 'ReportManager/GroupSalaryReportSearch',
| method: 'get',
| params: data
| })
| }
|
| // 班组工资报表记录查询
| export function GroupSalaryReportExcelSearch(data) {
| return request({
| url: 'ReportManager/GroupSalaryReportExcelSearch',
| method: 'get',
| params: data
| })
| }
|
| // 班组工资报表记录查看报工人员
| export function GroupSalaryReportSearchUser(data) {
| return request({
| url: 'ReportManager/GroupSalaryReportSearchUser',
| method: 'get',
| params: data
| })
| }
|
| // 人员工资明细报表
| export function PeopleSalaryReportSearch(data) {
| return request({
| url: 'ReportManager/PeopleSalaryReportSearch',
| method: 'get',
| params: data
| })
| }
|
| // 人员工资明细报表导出
| export function PeopleSalaryReportExcelSearch(data) {
| return request({
| url: 'ReportManager/PeopleSalaryReportExcelSearch',
| method: 'get',
| params: data
| })
| }
|
|