index.js
672 Bytes
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
})
}