zhaowei
11 小时以前 54d11f9a2f395e021486e6a31912616274b3feda
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { getAction, deleteAction, putAction, postAction, httpAction } from '@/api/manage'
 
export default {
  // 获取效率数据
  getEfficiencyDataApi: () => getAction('/outer/bigScreen/findDataByLastWeek'),
  // 获取全厂报警信息
  getWorkshopAlarmInfoApi: () => getAction('/outer/bigScreen/findAlarmInfo'),
  // 获取全厂当前设备状态
  getWorkshopEquipmentStatusApi: () => getAction('/outer/bigScreen/findAllEquipmentStatus'),
  // 获取当前设备状态(设备布局图)
  getEquipmentStatusApi: () => getAction('/outer/bigScreen/findEquipmentStatus'),
  // 获取前七天利用率排名
  getUtilizationRateRankApi: () => getAction('/outer/bigScreen/findDataRankingByLastWeek')
}