趋势图变更

This commit is contained in:
hey7845
2021-12-28 15:42:34 +08:00
parent 68fe43b0fc
commit 6b3b786bd4
3 changed files with 118 additions and 28 deletions

3
src/api/ecology/dict.js Normal file
View File

@@ -0,0 +1,3 @@
import axios from 'axios';
// 查询全部字典项
export const getDictData = params => axios.get("/sys/dictdata",{params})

View File

@@ -75,6 +75,9 @@ const getGisArea = function(data){
const getTrendChart = function(data){
return axios.post("/sound/road/noise/trend/chart",data)
}
const getPlaceByRegionLevel = function(column){
return axios.get("/sound/road/noise/place/region",{params:{column}})
}
export {
pageBillUrl,
saveRoadNoiseBill,
@@ -96,5 +99,6 @@ export {
getGisBase,
getGisArea,
roadNoiseYearEnd,
getTrendChart
getTrendChart,
getPlaceByRegionLevel
}