You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
733 B

import request from '@/utils/request'
// 查询埋点列表
export function listBuried(query) {
return request({
url: '/system/buried/list',
method: 'get',
params: query
})
}
// 查询埋点详细
export function getBuried(id) {
return request({
url: '/system/buried/' + id,
method: 'get'
})
}
// 新增埋点
export function addBuried(data) {
return request({
url: '/system/buried',
method: 'post',
data: data
})
}
// 修改埋点
export function updateBuried(data) {
return request({
url: '/system/buried',
method: 'put',
data: data
})
}
// 删除埋点
export function delBuried(id) {
return request({
url: '/system/buried/' + id,
method: 'delete'
})
}