Merge remote-tracking branch 'origin/yinyongshui'

This commit is contained in:
2021-12-16 16:38:37 +08:00
27 changed files with 225 additions and 130 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)
}