index.js
1.29 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
68
import request from '@/utils/request'
/**
* 获取车主首页卡片信息
* @param param
*/
export function getCustIndexBaseInfo(param) {
return request({
url: '/personPc/index/getCustIndexBaseInfo',
method: 'post',
data:param
})
}
/**
* 获取车主月支出
* @param param
*/
export function queryOwnerPayOutByMonth(param) {
return request({
url: '/personPc/index/queryOwnerPayOutByMonth',
method: 'post',
data:param
})
}
/**
* 获取车主停车记录
* @param param
*/
export function queryOwnerParkRecord(param) {
return request({
url: '/personPc/index/queryOwnerParkRecord',
method: 'post',
data:param
})
}
/**
* 分页查询车主欠费记录
* @param param
*/
export function pageQueryArrearRecordByCondition(param) {
return request({
url: '/personPc/index/pageQueryArrearRecordByCondition',
method: 'post',
data:param
})
}
/**
* 补缴获取二维码
* @param param
*/
export function personOrderBackWxPay(param) {
return request({
url: '/personPc/wxPay/personOrderBackWxPay',
method: 'post',
data:param
})
}
/**
* 获取所有组织下拉框
* @param param
*/
export function selectAllAppOrg(param) {
return request({
url: '/personPc/index/selectAllAppOrg',
method: 'post',
data:param
})
}