2026-06-03 17:10:34 +08:00
|
|
|
import request from '@/utils/request';
|
|
|
|
|
//栖息地保护工作开展情况
|
|
|
|
|
export function fhGetKendoListCust(data: any) {
|
|
|
|
|
return request({
|
2026-06-04 11:42:07 +08:00
|
|
|
url: '/fh/GetKendoListCust',
|
2026-06-03 17:10:34 +08:00
|
|
|
method: 'post',
|
|
|
|
|
data
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
//获取所属栖息地
|
|
|
|
|
export function msstbprptGetKendoList(data: any) {
|
|
|
|
|
return request({
|
2026-06-04 11:42:07 +08:00
|
|
|
url: '/fh/msstbprpt/GetKendoList',
|
2026-06-03 17:10:34 +08:00
|
|
|
method: 'post',
|
|
|
|
|
data
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
//水温监测数据
|
|
|
|
|
export function sdrvwtsGetKendoList(data: any) {
|
|
|
|
|
return request({
|
2026-06-04 11:42:07 +08:00
|
|
|
url: '/fh/sdrvwts/GetKendoList',
|
2026-06-03 17:10:34 +08:00
|
|
|
method: 'post',
|
|
|
|
|
data
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
//水文监测
|
|
|
|
|
export function sdriverdaysGetKendoList(data: any) {
|
|
|
|
|
return request({
|
2026-06-04 11:42:07 +08:00
|
|
|
url: '/fh/zq/sdriverdays/GetKendoList',
|
2026-06-03 17:10:34 +08:00
|
|
|
method: 'post',
|
|
|
|
|
data
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
//主要栖息地基本信息
|
|
|
|
|
export function fhGetKendoListCustom(data: any) {
|
|
|
|
|
return request({
|
2026-06-04 11:42:07 +08:00
|
|
|
url: '/fh/GetKendoListCustom',
|
2026-06-03 17:10:34 +08:00
|
|
|
method: 'post',
|
|
|
|
|
data
|
|
|
|
|
});
|
|
|
|
|
}
|