点位类型状态显示

This commit is contained in:
lyd
2022-10-19 13:50:59 +08:00
parent 8b89c10e33
commit fce1600966
8 changed files with 247 additions and 176 deletions

View File

@@ -32,4 +32,20 @@ export function changeActive(data) {
})
}
export default { add, edit, del, changeActive }
export function getPointStatusSelectById(id) {
return request({
url: 'api/region/getPointStatusSelectById',
method: 'post',
data: id
})
}
export function getPointTypeSelectById(id) {
return request({
url: 'api/region/getPointTypeSelectById',
method: 'post',
data: id
})
}
export default { add, edit, del, changeActive, getPointStatusSelectById, getPointTypeSelectById }