import { $http } from './index'; /** * */ export default { fethcRealtimeData(deviceCode, type, page, perPage) { const params = `deviceCode=${deviceCode}&type=${type}&page=${page}&perPage=${perPage}`; $http.get(`air/realtime/sec?${params}`); } };