导入跳转

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
}