饮用水全部捆绑接口

This commit is contained in:
庞东林
2021-12-16 14:42:27 +08:00
parent 2e86910009
commit bcfc64295f
25 changed files with 226 additions and 125 deletions

View File

@@ -20,6 +20,8 @@ export const villageListInfo = function (data) {
return axios.get(villageListInfoUrl,data)
}
// 下拉结束
// 市级监测数据报送表
export const pageBsaeListUrl = '/drinkingWater/drinkingWater/AnalysePage';
export const analysePageData = function (data) {
@@ -41,7 +43,7 @@ export const getWaterCount = function (data) {
}
//市级—超标评价
export const overStandardtUrl = '/drinkingWater/drinkingWater/AnalysePage';
export const overStandardtUrl = '/drinkingWater/drinkingWater/getWaterEvaluate';
export const overStandardCount = function (data) {
return axios.post(overStandardtUrl,data)
}
@@ -87,7 +89,7 @@ export const countyDescripFormData = function (data) {
}
//县级—超标评价
export const countyOverStandardtUrl = '/drinkingWater/drinkingWater/AnalysePage';
export const countyOverStandardtUrl = '/drinkingWater/drinkingWater/getCompositeNutritionIndex';
export const countyOverStandardCount = function (data) {
return axios.post(countyOverStandardtUrl,data)
}
@@ -127,4 +129,10 @@ export const villageWaterQualityData = function (data) {
export const villageWaterQualityUpUrl = '/drinkingWaterVillage/drinkingWaterVillage/getWaterQualityStandard';
export const villageWaterQualityUpData = function (data) {
return axios.post(villageWaterQualityUpUrl,data)
}
//农村—超标评价
export const villageOverStandardtUrl = '/drinkingWaterVillage/drinkingWaterVillage/getWaterVillageEvaluate';
export const villageOverStandardCount = function (data) {
return axios.post(villageOverStandardtUrl,data)
}