first commit

This commit is contained in:
zc
2025-06-05 09:55:41 +08:00
commit 935360c185
459 changed files with 61034 additions and 0 deletions

44
src/api/system/point.js Normal file
View File

@@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询点位管理列表
export function listPoint(query) {
return request({
url: '/system/point/list',
method: 'get',
params: query
})
}
// 查询点位管理详细
export function getPoint(id) {
return request({
url: '/system/point/' + id,
method: 'get'
})
}
// 新增点位管理
export function addPoint(data) {
return request({
url: '/system/point',
method: 'post',
data: data
})
}
// 修改点位管理
export function updatePoint(data) {
return request({
url: '/system/point',
method: 'put',
data: data
})
}
// 删除点位管理
export function delPoint(id) {
return request({
url: '/system/point/' + id,
method: 'delete'
})
}