| | |
| | | import { getAction, deleteAction, putAction, postAction, httpAction } from '@/api/manage' |
| | | |
| | | export default { |
| | | /* MDC */ |
| | | // 获取所有车间信息 |
| | | getAllWorkShop: id => getAction('/mdc/home/getAllWorkShop', {}), |
| | | // 根据用户ID获取用户信息 |
| | |
| | | getEquipmentOEEStatistics: productionId => getAction('/mdc/home/equipmentOEEStatistics', { productionId }), |
| | | // 设备OEE和利用率对比 |
| | | getEquipmentMonthStatisticsApi: productionId => getAction('/mdc/home/equipmentMonthStatistics', { productionId }), |
| | | |
| | | /* EAM */ |
| | | // 技术状态 |
| | | getEquipmentTechnologyStatusApi: () => getAction('/equipment/home/getEquipmentTechnologyStatusList'), |
| | | // 故障报修 |
| | | getReportRepairEquipmentApi: () => getAction('/equipment/home/getReportRepairEquipmentList'), |
| | | // 三保计划 |
| | | getThirdMaintenancePlanApi: () => getAction('/equipment/home/getThirdGuaranteesPlan'), |
| | | // 二保计划 |
| | | getSecondMaintenancePlanApi: () => getAction('/equipment/home/getSecondGuaranteesPlan') |
| | | } |