导入跳转

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

@@ -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
}