代码更新

This commit is contained in:
lyd
2022-10-26 16:52:50 +08:00
parent 1b7a2db6ea
commit af8bf152f7
13 changed files with 191 additions and 123 deletions

View File

@@ -52,7 +52,6 @@ export function getRegion() {
})
}
export function changeUsed(data) {
return request({
url: 'api/point/changeUsed',
@@ -61,4 +60,12 @@ export function changeUsed(data) {
})
}
export default { add, edit, del, changeActive, findPoints, getPoint, getRegion, changeUsed }
export function changeLock(data) {
return request({
url: 'api/point/changeLock',
method: 'post',
data: data
})
}
export default { add, edit, del, changeActive, findPoints, getPoint, getRegion, changeUsed, changeLock }