50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
import request from '@/utils/request';
|
|
//水质监测工作开展情况
|
|
export function msstbprptGetKendoList(data: any) {
|
|
return request({
|
|
url: '/api/dec-lygk-base-server/base/msstbprpt/GetKendoList',
|
|
method: 'post',
|
|
data
|
|
});
|
|
}
|
|
////水温监测工作开展情况弹框
|
|
export function vmsstbprptGetKendoList(data: any) {
|
|
return request({
|
|
url: '/wq/vmsstbprpt/GetKendoList',
|
|
method: 'post',
|
|
data
|
|
});
|
|
}
|
|
//地表水水质达标率
|
|
export function wqGetKendoListCust(data: any) {
|
|
return request({
|
|
url: '/api/wmp-env-server/env/wq/GetKendoListCust',
|
|
method: 'post',
|
|
data
|
|
});
|
|
}
|
|
|
|
//环境质量满足度 - 表格数据列表
|
|
export function wqGetKendoList(data: any) {
|
|
return request({
|
|
url: '/api/wmp-env-server/env/wq/GetKendoListCust',
|
|
method: 'post',
|
|
data
|
|
});
|
|
}
|
|
//沿程水质变化_ 图表数据
|
|
export function qgcGetKendoListCust(data: any) {
|
|
return request({
|
|
url: '/api/wmp-env-server/env/wq/along/qgc/GetKendoListCust',
|
|
method: 'post',
|
|
data
|
|
});
|
|
}
|
|
//沿程水质变化_ 根据流域获取河段 https://211.99.26.225:12122
|
|
export function wbsbGetKendoList(data: any) {
|
|
return request({
|
|
url: '/api/dec-lygk-base-server/base/wbsb/GetKendoList',
|
|
method: 'post',
|
|
data
|
|
});
|
|
} |