import axios from 'axios'; const baseUri = "/sound/zone/place"; const listAllUrl = baseUri + ""; // 添加 const savePlace = function (data) { return axios.post("/sound/zone/place",data) } // 删除 const removePlace = function (id) { return axios.delete(`/sound/zone/place/${id}`,) } // 批量删除 const removeBatchPlace = function (ids) { return axios.delete("/sound/zone/place/batch",{data:ids}) } // 修改 const updatePlace = function (data) { return axios.put("/sound/zone/place",data) } export { listAllUrl, savePlace, updatePlace, removeBatchPlace, removePlace }