/** * 信息查询 */ import request from '@/api/index' // 基础列表 export function getInfoListPage(data: any) { return request({ url: `/system/busDevice/listPage?limit=${data.limit}&offset=${data.offset}`, method: 'post', data, }) } // 查询设备数据 export function getDeviceData(data: any) { return request({ url: `system/busDevice/monitorData`, method: 'post', data, }) }