index.js 601 Bytes

import { get, post } from '../utils/http';
export const getHomeData = (p) => post('/daily/getHomeDaily', p);
export const getAlarmStats1 = (p) => post('/report/getAlarmStats1', p);
export const getLatestTargetInfo = (p) => post('/report/getLatestTargetInfo', p);
export const getCarDailyTopN = (p) => post('/report/getCarDailyTopN', p);
export const getCarAlarmStatistics = (p) => post('/alarm/getCarAlarmStatistics', p);
export const getSubCompanyCarAlarmRank = (p) => post('/alarm/getSubCompanyCarAlarmRank', p);
export const getLatestCarAlarmList = (p) => post('/alarm/getLatestCarAlarmList', p);