空气统计,声字典年份打底

This commit is contained in:
weicw
2021-09-25 14:22:40 +08:00
parent 3a1da0013e
commit ad3b1fc7e6
17 changed files with 1017 additions and 38 deletions

View File

@@ -59,6 +59,13 @@ const getColumnOptions = function(column){
}
//均值 百分位
const statisticAvg = "/ambientAir/ambientAir/statistic/avg";
//市县站点统计
const statisticUrl = "/ambientAir/ambientAir/statistic";
//城区统计
const statisticAreaBase = "/ambientAir/ambientAir/statistic/areaBase";
const statisticArea = "/ambientAir/ambientAir/statistic/area";
export {
pageBillUrl,
saveAirBill,
@@ -74,6 +81,9 @@ export {
updateAir,
removeBatchAir,
getColumnOptions,
statisticAvg
statisticAvg,
statisticUrl,
statisticAreaBase,
statisticArea
}

View File

@@ -20,13 +20,16 @@ const removeBatchFunctionType = function (ids) {
const updateFunctionType = function (data) {
return axios.put("/sound/function/functionType",data)
}
const getColumnOptions = function(column){
return axios.get("/sound/function/functionType/options",{params:{column}})
}
export {
listAllUrl,
saveFunctionType,
updateFunctionType,
removeBatchFunctionType,
removeFunctionType
removeFunctionType,
getColumnOptions
}

View File

@@ -20,13 +20,16 @@ const removeBatchLeqLevel = function (ids) {
const updateLeqLevel = function (data) {
return axios.put("/sound/function/noiseLeqLevel",data)
}
const getColumnOptions = function(column){
return axios.get("/sound/function/noiseLeqLevel/options",{params:{column}})
}
export {
listAllUrl,
saveLeqLevel,
updateLeqLevel,
removeBatchLeqLevel,
removeLeqLevel
removeLeqLevel,
getColumnOptions
}

View File

@@ -21,12 +21,17 @@ const updatePlace = function (data) {
return axios.put("/sound/function/place",data)
}
const getColumnOptions = function(column){
return axios.get("/sound/function/place/options",{params:{column}})
}
export {
listAllUrl,
savePlace,
updatePlace,
removeBatchPlace,
removePlace
removePlace,
getColumnOptions
}

View File

@@ -21,12 +21,17 @@ const updateLeqLevel = function (data) {
return axios.put("/sound/road/noiseLeqLevel",data)
}
const getColumnOptions = function(column){
return axios.get("/sound/road/noiseLeqLevel/options",{params:{column}})
}
export {
listAllUrl,
saveLeqLevel,
updateLeqLevel,
removeBatchLeqLevel,
removeLeqLevel
removeLeqLevel,
getColumnOptions
}

View File

@@ -21,12 +21,15 @@ const updatePlace = function (data) {
return axios.put("/sound/road/place",data)
}
const getColumnOptions = function(column){
return axios.get("/sound/road/place/options",{params:{column}})
}
export {
listAllUrl,
savePlace,
updatePlace,
removeBatchPlace,
removePlace
removePlace,
getColumnOptions
}

View File

@@ -20,6 +20,9 @@ const removeBatchLeqLevel = function (ids) {
const updateLeqLevel = function (data) {
return axios.put("/sound/zone/noiseLeqLevel",data)
}
const getColumnOptions = function(column){
return axios.get("/sound/zone/noiseLeqLevel/options",{params:{column}})
}
export {
@@ -27,6 +30,7 @@ export {
saveLeqLevel,
updateLeqLevel,
removeBatchLeqLevel,
removeLeqLevel
removeLeqLevel,
getColumnOptions
}

View File

@@ -21,12 +21,17 @@ const updatePlace = function (data) {
return axios.put("/sound/zone/place",data)
}
const getColumnOptions = function(column){
return axios.get("/sound/zone/place/options",{params:{column}})
}
export {
listAllUrl,
savePlace,
updatePlace,
removeBatchPlace,
removePlace
removePlace,
getColumnOptions
}