import { get, post} from './httpRequest' const baseWX = 'http://bcp.service.renniting.cn/' //无锡 const baseDY = 'http://106.15.191.5:8093/' //丹阳 //....用户数 export const memberAddress = p => post(baseWX+'urban/intelligence/appuser/queryUserPersonStatistic',p) export const memberAddressDY = p => post(baseDY+'urban/intelligence/appuser/queryUserPersonStatistic',p) //....收费员 export const tollmanAddress = p => post(baseWX+'urban/intelligence/employee/queryEmployeeStaByOrgIds',p) export const tollmanAddressDY = p => post(baseDY+'urban/intelligence/employee/queryEmployeeStaByOrgIds',p) //....收入 export const incomeAddress = p => post(baseWX+'urban/intelligence/income/queryIncomeStaByOrgIds',p) export const incomeAddressDY = p => post(baseDY+'urban/intelligence/income/queryIncomeStaByOrgIds',p) //....泊位 export const berthAddress = p => post(baseWX+'urban/intelligence/berth/queryBerthStatisticByOrgIds',p) export const berthAddressDY = p => post(baseDY+'urban/intelligence/berth/queryBerthStatisticByOrgIds',p) //....设备 export const deviceAddress = p => post(baseWX+'urban/intelligence/device/queryDeviceStatistic',p) export const deviceAddressDY = p => post(baseDY+'urban/intelligence/device/queryDeviceStatistic',p) //....消息 export const msgAddress = p => post(baseWX+'urban/intelligence/orderPark/queryLastOrderPark',p) export const msgAddressDY = p => post(baseDY+'urban/intelligence/orderPark/queryLastOrderPark',p) //....今日车流量 export const dayAddress = p => post(baseWX+'urban/intelligence/orderPark/queryOrderParkNumForToday',p) export const dayAddressDY = p => post(baseDY+'urban/intelligence/orderPark/queryOrderParkNumForToday',p) //....周出场 export const weekAddress = p => post(baseWX+'urban/intelligence/orderPark/queryOrderParkNumForLastWeek',p) export const weekAddressDY = p => post(baseDY+'urban/intelligence/orderPark/queryOrderParkNumForLastWeek',p) //....停车场总数 export const parkAddress = p => post(baseWX+'urban/intelligence/park/queryParkNumInfoStatisticByOrgIds',p) export const parkAddressDY = p => post(baseDY+'urban/intelligence/park/queryParkNumInfoStatisticByOrgIds',p) //....地图 export const baiduMapAddress = p => post(baseWX+'urban/intelligence/berth/queryBerthStatisticForOrgId',p) export const baiduMapAddressDY = p => post(baseDY+'urban/intelligence/berth/queryBerthStatisticForOrgId',p)