api.js 1.13 KB
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)

//....收入
export const incomeAddress = p => post('urban/intelligence/income/queryIncomeStaByOrgIds',p)

//....泊位
export const berthAddress = p => post('urban/intelligence/berth/queryBerthStatisticByOrgIds',p)

//....设备
export const deviceAddress = p => post('urban/intelligence/device/queryDeviceStatistic',p)

//....消息
export const msgAddress = p => post('urban/intelligence/orderPark/queryLastOrderPark',p)

//....今日车流量
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)