Blame view

src/api/index.js 672 Bytes
46081f33   王飞   交互
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
  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
    })
  }