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
| import request from '@/utils/request'
| import commonUtil from "@/utils/common";
|
| // 获取请假列表
|
| export const getMeetingList = data => {
| const queryString = commonUtil.objectToQueryStr(data);
| return request({
| url: '/meeting/list',
| method: 'post',
| data: queryString,
| headers: {
| 'Content-Type': 'application/x-www-form-urlencoded'
| },
| });
| }
|
| // 添加请假
| // http://101.43.32.218:8020/leaveapply/add
| export const addMeeting = data => {
| const fd = commonUtil.objectToFormData(data)
| return request({
| url: '/meeting/add',
| method: 'post',
| data: fd
| });
| }
|
| // 导出请假
| // http://101.43.32.218:8020/leaveapply/add
| export const exportMeeting = data => {
| const fd = commonUtil.objectToFormData(data)
| return request({
| url: '/meeting/export',
| method: 'post',
| data: fd,
| headers: {
| 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
| }
| });
| }
|
|
| // 删除请假
| // http://101.43.32.218:8020/leaveapply/add
| export const deleteMeeting = data => {
| const fd = commonUtil.objectToFormData(data)
| return request({
| url: '/meeting/remove',
| method: 'post',
| data: fd
| });
| }
|
|