WholeProcessPlatform/frontend/src/api/zngj/index.ts

92 lines
2.1 KiB
TypeScript
Raw Normal View History

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