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')
| }
|
|