/** * 运行总览 */ import request from '../requestLab' const prefix = 'overview' // 列表查询 export function getOverviewAlarmDetail() { return request({ url: `${prefix}/alarmCount`, method: 'get', }) } // 查询各个实验室数据 export function getLocationDetail() { return request({ url: `${prefix}/workshop/environment`, method: 'get', }) }