字典、统计

This commit is contained in:
weicw
2021-09-18 14:51:31 +08:00
parent 9c1f1c1b8c
commit f212f334ef
21 changed files with 3228 additions and 2319 deletions

View File

@@ -28,6 +28,10 @@ const getZoneNoiseBill = function (id) {
}
// -------------------------数据---------------------
const pageZoneNoiseUrl = '/sound/zone/noise/page';
const listAllZoneNoiseUrl = '/sound/zone/noise';
const listALlZoneNoise = function (params){
return axios.get(listAllZoneNoiseUrl,{params})
}
// 添加
const saveZoneNoise = function (data) {
return axios.post("/sound/zone/noise",data)
@@ -75,6 +79,7 @@ export {
getHistoryyears,
getColumnOptions,
statisticSourceUrl,
statisticYearUrl
statisticYearUrl,
listALlZoneNoise
}