可编辑单元格

This commit is contained in:
庞东林
2021-12-08 14:43:30 +08:00
parent e72f3d6109
commit c76fce1651
3 changed files with 46 additions and 48 deletions

View File

@@ -10,16 +10,23 @@ export const analysePageData = function (data) {
//市级—报送情况说明表
export const pageDescListUrl = '/drinkingWater/drinkingWater/getDescripForm';
export const getDescripForm = function (data) {
return axios.post(pageDescListUrl,data)
}
//市级—取水量统计
export const pageanalyseListUrl = '/drinkingWater/drinkingWater/AnalysePage';
export const getPageDescList = function (data) {
return axios.get("/drinkingWater/drinkingWater/getDescripForm",{params:data})
// return axios.get("/drinkingWater/drinkingWater/AnalysePage",{params:data})
export const getWaterCount = function (data) {
return axios.post(pageanalyseListUrl,data)
}
// 县级
//监测数据报送表
export const countyPageBsaeListUrl = '/drinkingWater/drinkingWater/CountyAnalysePage';
export const countyPageBsaeListUrl = '/drinkingWater/drinkingWater/CountyAnalysePage';
export const countyPageBsaeData = function (data) {
return axios.post(countyPageBsaeListUrl,data)
}