Newer
Older
smartwell_front / src / api / mobile / info.ts
liyaguang on 20 Feb 419 bytes 设备运维/运维记录联调完成
/**
 * 信息查询
 */
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,
  })
}