提交更改版本

This commit is contained in:
zhujiyan
2024-07-22 10:35:01 +08:00
parent 33a41b9d7a
commit bccf61c6d1
31 changed files with 180231 additions and 443 deletions

View File

@@ -15,3 +15,22 @@ export function getDeviceData(deviceId: string, type: string, lineId = '') {
data: form
})
}
//获取趋势数据、暂态数据、实时数据
export function getTabsDataByType(data: any) {
return createAxios({
url: '/cs-device-boot/csGroup/deviceDataByType',
method: 'POST',
data
})
}
//获取实时数据列表数据
export function getRealTimeTableList() {
return createAxios({
url: '/cs-device-boot/csGroup/getGroupPortableStatistical',
method: 'GET',
})
}