92 lines
2.1 KiB
TypeScript
92 lines
2.1 KiB
TypeScript
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
|
||
});
|
||
}
|