Blame view

src/utils/api.js 592 Bytes
350097e4   liuqimichale   调取接口
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  import {post} from './request'
  
  //....停车场总数
  export const parkAddress = p => post('urban/intelligence/park/queryParkNumInfoStatisticByOrgIds',p)
  
  //....收费员
  export const tollAddress = p => post('urban/intelligence/employee/queryEmployeeStaByOrgIds',p)
  
  
  //....收入
  export const incomeAddress = p => post('urban/intelligence/income/queryIncomeStaByOrgIds',p)
  
  //....泊位
  export const berthAddress = p => post('urban/intelligence/berth/queryBerthStatisticByOrgIds',p)
  
  //....设备
  export const equipmentAddress = p => post('urban/intelligence/device/queryDeviceStatistic',p)