导入跳转

This commit is contained in:
weicw
2021-10-24 17:00:41 +08:00
parent 2a59762ef5
commit e3b8cafdac
45 changed files with 2856 additions and 2972 deletions

View File

@@ -21,12 +21,20 @@ const updateAqiRelate = function (data) {
return axios.put("/ambientAir/airAqiRelateInfoDict",data)
}
const copyBatchPlace = function (data){
return axios.post("/ambientAir/airAqiRelateInfoDict/copyBatch",data)
}
const getColumnOptions = function(column){
return axios.get("/ambientAir/airAqiRelateInfoDict/options",{params:{column}})
}
export {
listAllUrl,
saveAqiRelate,
updateAqiRelate,
removeBatchAqiRelate,
removeAqiRelate
removeAqiRelate,
copyBatchPlace,
getColumnOptions
}

View File

@@ -20,13 +20,20 @@ const removeBatchStandard = function (ids) {
const updateStandard = function (data) {
return axios.put("/ambientAir/airEvaluationStandard",data)
}
const copyBatchPlace = function (data){
return axios.post("/ambientAir/airEvaluationStandard/copyBatch",data)
}
const getColumnOptions = function(column){
return axios.get("/ambientAir/airEvaluationStandard/options",{params:{column}})
}
export {
listAllUrl,
saveStandard,
updateStandard,
removeBatchStandard,
removeStandard
removeStandard,
copyBatchPlace,
getColumnOptions
}

View File

@@ -21,12 +21,19 @@ const updateIndicatorIaqi = function (data) {
return axios.put("/ambientAir/airIndicatorIaqiDict",data)
}
const copyBatchPlace = function (data){
return axios.post("/ambientAir/airIndicatorIaqiDict/copyBatch",data)
}
const getColumnOptions = function(column){
return axios.get("/ambientAir/airIndicatorIaqiDict/options",{params:{column}})
}
export {
listAllUrl,
saveIndicatorIaqi,
updateIndicatorIaqi,
removeBatchIndicatorIaqi,
removeIndicatorIaqi
removeIndicatorIaqi,
copyBatchPlace,
getColumnOptions
}

View File

@@ -21,12 +21,19 @@ const updatePlace = function (data) {
return axios.put("/ambientAir/airPlaceBasicInfoDict",data)
}
const copyBatchPlace = function (data){
return axios.post("/ambientAir/airPlaceBasicInfoDict/copyBatch",data)
}
const getColumnOptions = function(column){
return axios.get("/ambientAir/airPlaceBasicInfoDict/options",{params:{column}})
}
export {
listAllUrl,
savePlace,
updatePlace,
removeBatchPlace,
removePlace
removePlace,
copyBatchPlace,
getColumnOptions
}

View File

@@ -6,7 +6,10 @@ const listAllUrl = baseUri + "";
const savePlace = function (data) {
return axios.post("/sound/function/place",data)
}
// 批量添加
const savePlaceBatch = function (data) {
return axios.post("/sound/function/place/batch",data)
}
// 删除
const removePlace = function (id) {
return axios.delete(`/sound/function/place/${id}`,)
@@ -36,5 +39,6 @@ export {
removeBatchPlace,
removePlace,
getColumnOptions,
copyBatchPlace
copyBatchPlace,
savePlaceBatch
}

View File

@@ -6,7 +6,10 @@ const listAllUrl = baseUri + "";
const savePlace = function (data) {
return axios.post("/sound/road/place",data)
}
// 批量添加
const savePlaceBatch = function (data) {
return axios.post("/sound/road/place/batch",data)
}
// 删除
const removePlace = function (id) {
return axios.delete(`/sound/road/place/${id}`,)
@@ -33,6 +36,7 @@ export {
removeBatchPlace,
removePlace,
getColumnOptions,
copyBatchPlace
copyBatchPlace,
savePlaceBatch
}

View File

@@ -6,6 +6,10 @@ const listAllUrl = baseUri + "";
const savePlace = function (data) {
return axios.post("/sound/zone/place",data)
}
// 批量添加
const savePlaceBatch = function (data) {
return axios.post("/sound/zone/place/batch",data)
}
// 删除
const removePlace = function (id) {
@@ -36,6 +40,7 @@ export {
removeBatchPlace,
removePlace,
copyBatchPlace,
getColumnOptions
getColumnOptions,
savePlaceBatch
}

View File

@@ -48,9 +48,7 @@ const updateLake = function (data) {
}
// -------------------------统计---------------------
const pageLakeStatisticUrl = '/lakeLibrary/lakeLibrarySpecial/statistic';
const statisticSourceUrl = '/lakeLibrary/lakeLibrarySpecial/statistic/source';
const statisticYearUrl = '/lakeLibrary/lakeLibrarySpecial/statistic/year';
const avgUrl = '/lakeLibrary/lakeLibrarySpecial/specialExcel';
const getHistoryyears = function () {
return axios.get("/lakeLibrary/lakeLibrarySpecial/history-year")
}
@@ -71,10 +69,9 @@ export {
removeLake,
updateLake,
removeBatchLake,
pageLakeStatisticUrl,
avgUrl,
getHistoryyears,
getColumnOptions,
statisticSourceUrl,
statisticYearUrl
}