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
813 B

2 years ago
import request from '@/utils/request'
// 查询等保系统列表
export function listDbxt(query) {
return request({
url: '/tcZz/networkSecurity/dbxt/list',
method: 'get',
params: query
})
}
// 查询等保系统详细
export function getDbxt(id) {
return request({
url: '/tcZz/networkSecurity/dbxt/' + id,
method: 'get'
})
}
// 新增等保系统
export function addDbxt(data) {
return request({
url: '/tcZz/networkSecurity/dbxt',
method: 'post',
data: data
})
}
// 修改等保系统
export function updateDbxt(data) {
return request({
url: '/tcZz/networkSecurity/dbxt',
method: 'put',
data: data
})
}
// 删除等保系统
export function delDbxt(id) {
return request({
url: '/tcZz/networkSecurity/dbxt/' + id,
method: 'delete'
})
}