index.ts
1.37 KB
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
66
67
import request from '../request'
import { deleteEmptyParam } from '@/utils/tool'
/**
* @description 物业费列表
* @function propertyFeeList
*/
export const propertyFeeList = async ( params: any ) => {
let res: any = await request({
method: 'get',
url: '/notify/list',
params: deleteEmptyParam(params)
})
return res
}
/**
* @description 删除物业费
* @function propertyFeeDelete
*/
export const propertyFeeDelete = async (params: any) => {
let res: any = await request({
method: 'get',
url: '/notify/list',
params: deleteEmptyParam(params)
})
return res
}
/**
* @description 物业费现金缴费、撤回
* @function propertyFeeShift
*/
export const propertyFeeShift = async (params: any) => {
let res: any = await request({
method: 'get',
url: '/notify/list',
params: deleteEmptyParam(params)
})
return res
}
/**
* @description 物业费编辑
* @function propertyFeeSave
*/
export const propertyFeeSave = async (params: any) => {
let res: any = await request({
method: 'get',
url: '/notify/list',
params: deleteEmptyParam(params)
})
return res
}
/**
* @description 物业费确认
* @function propertyFeeSure
*/
export const propertyFeeSure = async (params: any) => {
let res: any = await request({
method: 'get',
url: '/notify/list',
params: deleteEmptyParam(params)
})
return res
}