增删改查over

This commit is contained in:
weicw
2021-08-03 14:41:25 +08:00
parent 1d94a57e39
commit b706a8a155
3 changed files with 135 additions and 32 deletions

View File

@@ -19,7 +19,13 @@ const removeBatchRoadSoundBill = function (ids) {
const updateRoadSoundBill = function (data) {
return axios.put("/collect/sound/road/bill",data)
}
// 审核
const verifyRoadSoundBill = function (data) {
return axios.put("/collect/sound/road/bill/verify",data);
}
const getRoadSoundBill = function (id) {
return axios.get(`/collect/sound/road/bill/${id}`)
}
// -------------------------数据---------------------
const pageRoadSoundUrl = '/collect/sound/road/page';
// 添加
@@ -46,6 +52,8 @@ export {
removeRoadSoundBill,
updateRoadSoundBill,
removeBatchRoadSoundBill,
verifyRoadSoundBill,
getRoadSoundBill,
pageRoadSoundUrl,
saveRoadSound,
removeRoadSound,