You need to sign in before continuing.
index.js 1.29 KB
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
  })
}