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
65
| import request from "@/utils/request";
|
| // 人员薪资台账列表
| export function monthlyStatisticsListPage(query) {
| return request({
| url: "/compensationPerformance/listPage",
| method: "get",
| params: query,
| });
| }
|
| // 人员薪资台账详情
| export function monthlyStatisticsGet(id) {
| return request({
| url: "/monthlyStatistics/get",
| method: "get",
| params: { id },
| });
| }
|
| // 新增人员薪资台账
| export function monthlyStatisticsAdd(data) {
| return request({
| url: "/compensationPerformance/add",
| method: "post",
| data,
| });
| }
|
| // 编辑人员薪资台账
| export function monthlyStatisticsUpdate(data) {
| return request({
| url: "/compensationPerformance/update",
| method: "post",
| data,
| });
| }
|
| // 删除人员薪资台账
| export function monthlyStatisticsDelete(ids) {
| return request({
| url: "/compensationPerformance/delete",
| method: "delete",
| data: ids,
| });
| }
|
| // 导出人员薪资台账
| export function monthlyStatisticsExport(query) {
| return request({
| url: "/compensationPerformance/export",
| method: "get",
| params: query,
| responseType: "blob",
| });
| }
|
| // 人员列表
| export function staffOnJobList(query) {
| return request({
| url: "/staff/staffOnJob/list",
| method: "get",
| params: query,
| });
| }
|
|