饮用水图表

This commit is contained in:
庞东林
2022-01-23 23:04:59 +08:00
parent d0df291b4b
commit f1e5f53cad
2 changed files with 1022 additions and 2 deletions

View File

@@ -8,13 +8,25 @@ export const listInfo = function (data) {
return axios.get(listInfoUrl,data)
}
// 县级
// 县级地表水
export const countyListInfoUrl = '/drinkingWater/drinkingWaterCountyDict';
export const countyListInfo = function (data) {
return axios.get(countyListInfoUrl,data)
}
// 村级
// 县级地下水
export const countyDownListInfoUrl = '/drinkingWater/drinkingWaterCountyBottomDict';
export const countyDownListInfo = function (data) {
return axios.get(countyDownListInfoUrl,data)
}
// 村级地表水
export const villageUpListInfoUrl = '/drinkingWater/drinkingWaterVillageTopDict';
export const villageUpListInfo = function (data) {
return axios.get(villageUpListInfoUrl,data)
}
// 村级地下水
export const villageListInfoUrl = '/drinkingWater/drinkingWaterVillageBottomDict';
export const villageListInfo = function (data) {
return axios.get(villageListInfoUrl,data)
@@ -153,3 +165,9 @@ export const filterList = function (data) {
return axios.post('/waterFunctionArea/drinkingWaterEvaluationStandard',data)
}
// 饮用水统计图表
export const drinkingWaterTrendUrl = '/drinkingWater/trendChart/data';
export const drinkingWaterTrend = function (data) {
return axios.post(drinkingWaterTrendUrl,data)
}

File diff suppressed because it is too large Load Diff