1
2
3
4
5
6
7
8
9
| import { getAction, deleteAction, putAction, postAction, httpAction } from '@/api/manage'
|
| export default {
| // 获取控制系统类型
| getDriveTypeApi: () => getAction('/mdc/mdcDriveTypeParamConfig/getDriveParamOptions'),
| // -------------------------------------设备电流负载对比页面--------------------------------------------
| // 获取设备电流负载对比图表数据
| getEquipCurrentLoadContrastChartDataApi: params => getAction('/mdc/equipmentElectricStatistical/getElectricValue', params)
| }
|
|