c9493378
liuqimichale
api 接口封装
|
1
2
3
4
5
6
7
8
|
import { get, post} from './httpRequest'
//....用户数
export const memberAddress = p => post('urban/intelligence/appuser/queryUserPersonStatistic',p)
//....收费员
export const tollmanAddress = p => post('urban/intelligence/employee/queryEmployeeStaByOrgIds',p)
|
8dcd7f64
liuqimichale
api 接口封装 news
|
9
|
//....收入
|
848073f1
liuqimichale
api 接口封装 收入
|
10
11
|
export const incomeAddress = p => post('urban/intelligence/income/queryIncomeStaByOrgIds',p)
|
8dcd7f64
liuqimichale
api 接口封装 news
|
12
13
14
|
//....泊位
export const berthAddress = p => post('urban/intelligence/berth/queryBerthStatisticByOrgIds',p)
|
848073f1
liuqimichale
api 接口封装 收入
|
15
|
//....设备
|
c9493378
liuqimichale
api 接口封装
|
16
|
export const deviceAddress = p => post('urban/intelligence/device/queryDeviceStatistic',p)
|
8dcd7f64
liuqimichale
api 接口封装 news
|
17
18
19
|
//....消息
export const msgAddress = p => post('urban/intelligence/orderPark/queryLastOrderPark',p)
|
1eee9ca9
liuqimichale
api 接口封装 地图
|
20
21
22
23
24
25
26
27
28
29
30
31
|
//....今日车流量
export const dayAddress = p => post('urban/intelligence/orderPark/queryOrderParkNumForToday',p)
//....周出场
export const weekAddress = p => post('urban/intelligence/orderPark/queryOrderParkNumForLastWeek',p)
//....停车场总数
export const parkAddress = p => post('urban/intelligence/park/queryParkNumStatisticByOrgIds',p)
//....地图
export const baiduMapAddress = p => post('urban/intelligence/berth/queryBerthStatisticForOrgId',p)
|