6ee6b0b7
杨鑫
'最新'
|
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
|
import request from '@/utils/request'
// 出租管理
export function rentalGetAll(data) {
return request({
url: '/cereLeasingInformation/queryByPage',
method: 'post',
data
})
}
export function rentalDel(data) {
return request({
url: '/cereLeasingInformation/deleteById',
method: 'post',
data
})
}
export function rentalAdd(data) {
return request({
url: '/cereLeasingInformation/add',
method: 'post',
data
})
}
|
8cb5c17e
杨鑫
'最新1'
|
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
|
//导出出租管理
export function excelRentOutQueryByPage(data) {
return request({
url: '/cereLeasingInformation/excelRentOutQueryByPage',
method: 'post',
data,
responseType: 'blob'
})
}
//导出决算管理
export function excelManagementOfFinalAccountsForRentals(data) {
return request({
url: '/cereLeasingInformation/excelManagementOfFinalAccountsForRentals',
method: 'post',
data,
responseType: 'blob'
})
}
//导出续租管理
export function excelLeaseRenewalManagement(data) {
return request({
url: '/cereLeasingInformation/excelLeaseRenewalManagement',
method: 'post',
data,
responseType: 'blob'
})
}
|
341f183e
杨鑫
'最新'
|
54
55
56
57
58
59
60
61
62
63
|
// PDF打印
export function pdfRentOutQueryByPage(data) {
return request({
url: '/cereLeasingInformation/pdfRentOutQueryByPage',
method: 'post',
data,
responseType: 'blob'
})
}
|