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
| import request from '/@/utils/request';
|
| export function workAppointApi() {
| return {
| // 分页获取列表
| getAppointListPage: (data: object) => {
| return request({
| url: import.meta.env.VITE_API_URL + `/specialWork/appointment/listAll`,
| method: 'post',
| data: data
| });
| },
|
| // 新增列表
| addRecord: (data: object) => {
| return request({
| url: import.meta.env.VITE_API_URL + `/specialWork/appointment/save`,
| method: 'post',
| data: data
| });
| },
|
| //修改列表
| editRecord: (data: object) => {
| return request({
| url: import.meta.env.VITE_API_URL + `/specialWork/appointment/update`,
| method: 'post',
| data: data
| });
| },
|
| //删除列表
| deleteRecord: (data: object) => {
| return request({
| url: import.meta.env.VITE_API_URL + `/specialWork/appointment/delete`,
| method: 'post',
| data: data
| });
| },
|
| //获取各部门各作业的数量
| getAllRecords: (data: object) => {
| return request({
| url: import.meta.env.VITE_API_URL + `/specialWork/appointment/statistics`,
| method: 'post',
| data: data
| });
| }
| };
| }
|
|