Blame view

src/api/api.js 1.36 KB
adf82b69   liuqimichale   调取接口
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
  
  import { post} from '../utils/request'
  //....设备
  export const deviceAddress = p => post('urban/intelligence/device/queryDeviceStatistic',p)
  
  
  //....设备
  export const moneyAddress = p => post('urban/intelligence/income/queryIncomeStaByOrgIds',p)
  
  //....收费员
  export const tollAddress = p => post('urban/intelligence/employee/queryEmployeeStaByOrgIds',p)
  
  //....泊位
  export const berthAddress = p => post('urban/intelligence/berth/queryBerthStatisticByOrgIds',p)
  
  //....周出场
  export const weekAddress = p => post('urban/intelligence/orderPark/queryOrderParkNumForLastWeek',p)
  
  //....周出场
  export const dayAddress = p => post('urban/intelligence/orderPark/queryOrderParkNumForToday',p)
  
  //....消息
  export const msgAddress = p => post('urban/intelligence/orderPark/queryLastOrderPark',p)
  
  //....停车场总数
  export const parkAddress = p => post('urban/intelligence/park/queryParkNumStatisticByOrgIds',p)
  
  //....用户数
  export const memberAddress = p => post('urban/intelligence/appuser/queryUserPersonStatistic',p)
  
  //....收入
  export const incomeAddress = p => post('urban/intelligence/income/queryIncomeStaByOrgIds',p)
  
  //....收入
  export const serviceAddress = p => post('urban/intelligence/park/queryAreaBlocksByOrgId',p)
  
  //....服务点下的停车场
  export const parkListAddress = p => post('urban/intelligence/park/queryParkingLotListByAreaBlockId',p)