owner.ts
1.14 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
import request from '../request'
// 根据类型查询列表
export function getTableList(params:any) {
return request({
method: 'get',
url: '/resident/residentList',
params: params
})
}
// 根据条件查询列表
export function residentListByCondition(params:any) {
return request({
method: 'get',
url: '/resident/residentListByCondition',
params: params
})
}
// 房屋信息
export function getHouse(params:any) {
return request({
method: 'post',
url: '/house/getHouse',
params: params
})
}
// 删除
export function deleteResident(params:any) {
return request({
method: 'delete',
url: '/resident/deleteResident',
params: params
})
}
// 取消绑定
export function changeBinding(params:any) {
return request({
method: 'PUT',
url: '/resident/removeBinding',
params: params
})
}
// 获取详情
export function getResidentById(params:any) {
return request({
method: 'get',
url: '/resident/getResidentById',
params: params
})
}
// 修改
export function update(params:any) {
return request({
method: 'post',
url: '/resident/update',
data: params
})
}