c9493378
liuqimichale
api 接口封装
|
1
2
3
4
5
6
7
8
9
10
|
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 deviceAddress = p => post('urban/intelligence/device/queryDeviceStatistic',p)
|