WholeProcessPlatform/frontend/src/api/zngj/index.ts
2026-07-09 11:33:04 +08:00

92 lines
2.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import request from '@/utils/request';
// AI识别大坝环境-获取统计数据Tab数量
export function getAisbdbyxList(data: any) {
return request({
url: '/warn/ai/com/qgcDmRun/GetKendoListCust',
method: 'post',
data
});
}
// AI识别大坝环境-获取饼图+表格数据
export function getAiChartTable(data: any) {
return request({
url: '/warn/ai/com/GetKendoListCust',
method: 'post',
data
});
}
// AI识别大坝环境-获取电站列表
export function getAiRstcd(data: any) {
return request({
url: '/warn/ai/com/qgc/aiRstcd/GetKendoListCust',
method: 'post',
data
});
}
// AI识别过鱼设施运行-获取统计数据
export function getAiGyssList(data: any) {
return request({
url: '/warn/ai/com/qgcProtect/GetKendoListCust',
method: 'post',
data
});
}
// 生态流量低于限值告警-获取统计数据
export function getStllGaojingList(data: any) {
return request({
url: '/warn/stcd/eng/GetKendoListCust',
method: 'post',
data
});
}
// 生态流量低于限值告警-获取表格详情数据
export function getStllGaojingDetail(data: any) {
return request({
url: '/warn/stcd/GetKendoListCust',
method: 'post',
data
});
}
// 水质监测数据告警-获取统计数据
export function getShuizhiGaojingList(data: any) {
return request({
url: '/wq/msstbprpt/GetKendoList',
method: 'post',
data
});
}
// AI识别大坝环境-获取漂浮物/清漂日历数据
export function getAiPfwRecord(data: any) {
return request({
url: '/warn/ai/com/qgc/aiPfwRecord/GetKendoListCust',
method: 'post',
data
});
}
// AI识别大坝环境-获取叠梁门日历数据
export function getAiRecord(data: any) {
return request({
url: '/warn/ai/com/qgc/aiRecord/GetKendoListCust',
method: 'post',
data
});
}
// AI识别大坝环境-获取日历详情视频数据 /warn/ai/com/qgc/aiFile/GetKendoListCust
export function getAiFile(data: any) {
return request({
url: '/warn/ai/com/qgc/aiFile/GetKendoListCust',
method: 'post',
data
});
}