饮用水框架页面

This commit is contained in:
庞东林
2021-12-10 11:39:22 +08:00
parent f7a430f8ca
commit 397fb28f4b
20 changed files with 1660 additions and 63 deletions

View File

@@ -22,6 +22,12 @@ export const getWaterCount = function (data) {
return axios.post(pageanalyseListUrl,data)
}
//市级—超标评价
export const overStandardtUrl = '/drinkingWater/drinkingWater/AnalysePage';
export const overStandardCount = function (data) {
return axios.post(overStandardtUrl,data)
}
//市级—水质类别
export const waterQualityUrl = '/drinkingWater/drinkingWater/AnalysePage';
@@ -54,4 +60,24 @@ export const waterNutritionalData = function (data) {
export const countyPageBsaeListUrl = '/drinkingWater/drinkingWater/CountyAnalysePage';
export const countyPageBsaeData = function (data) {
return axios.post(countyPageBsaeListUrl,data)
}
}
//报送情况说明表
export const countyDescripFormUrl = '/drinkingWater/drinkingWater/getCountyDescripForm';
export const countyDescripFormData = function (data) {
return axios.post(countyDescripFormUrl,data)
}
//县级—超标评价
export const countyOverStandardtUrl = '/drinkingWater/drinkingWater/AnalysePage';
export const countyOverStandardCount = function (data) {
return axios.post(countyOverStandardtUrl,data)
}
// 农村
export const villageAnalysePageUrl = '/drinkingWaterVillage/drinkingWaterVillage/VillageAnalysePage';
export const villageAnalysePageData = function (data) {
return axios.post(villageAnalysePageUrl,data)
}