This commit is contained in:
weicw
2021-09-29 21:01:56 +08:00
parent 1fc4e2590a
commit ddf83b104b
14 changed files with 1203 additions and 491 deletions

View File

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

View File

@@ -25,6 +25,9 @@ const getColumnOptions = function(column){
return axios.get("/sound/function/place/options",{params:{column}})
}
const copyBatchPlace = function (data){
return axios.post("/sound/function/place/copyBatch",data)
}
export {
listAllUrl,
@@ -32,6 +35,6 @@ export {
updatePlace,
removeBatchPlace,
removePlace,
getColumnOptions
getColumnOptions,
copyBatchPlace
}

View File

@@ -24,6 +24,10 @@ const updateLeqLevel = function (data) {
const getColumnOptions = function(column){
return axios.get("/sound/road/noiseLeqLevel/options",{params:{column}})
}
const copyBatchLeqLevel = function (data){
return axios.post("/sound/road/noiseLeqLevel/copyBatch",data)
}
export {
@@ -32,6 +36,7 @@ export {
updateLeqLevel,
removeBatchLeqLevel,
removeLeqLevel,
getColumnOptions
getColumnOptions,
copyBatchLeqLevel
}

View File

@@ -24,6 +24,10 @@ const getColumnOptions = function(column){
return axios.get("/sound/zone/noiseLeqLevel/options",{params:{column}})
}
const copyBatchLeqLevel = function (data){
return axios.post("/sound/zone/noiseLeqLevel/copyBatch",data)
}
export {
listAllUrl,
@@ -31,6 +35,7 @@ export {
updateLeqLevel,
removeBatchLeqLevel,
removeLeqLevel,
getColumnOptions
getColumnOptions,
copyBatchLeqLevel
}

View File

@@ -25,7 +25,7 @@ const getColumnOptions = function(column){
return axios.get("/sound/zone/place/options",{params:{column}})
}
const copyBatchPlace = function (data){
return axios.post("/sound/zone/copyBatch",data)
return axios.post("/sound/zone/place/copyBatch",data)
}