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.
42 lines
861 B
42 lines
861 B
1 month ago
|
import request from '@/utils/request'
|
||
|
//查看隐私保护URL列表
|
||
|
export function wafLdpURLListApi(params) {
|
||
|
return request({
|
||
|
url: '/wafhost/ldpurl/list',
|
||
|
method: 'post',
|
||
|
data: params
|
||
|
})
|
||
|
}
|
||
|
//删除隐私保护URL
|
||
|
export function wafLdpURLDelApi(params) {
|
||
|
return request({
|
||
|
url: '/wafhost/ldpurl/del',
|
||
|
method: 'get',
|
||
|
params: params
|
||
|
})
|
||
|
}
|
||
|
//编辑隐私保护URL
|
||
|
export function wafLdpURLEditApi(params) {
|
||
|
return request({
|
||
|
url: '/wafhost/ldpurl/edit',
|
||
|
method: 'post',
|
||
|
data: params
|
||
|
})
|
||
|
}
|
||
|
//添加隐私保护URL
|
||
|
export function wafLdpURLAddApi(params) {
|
||
|
return request({
|
||
|
url: '/wafhost/ldpurl/add',
|
||
|
method: 'post',
|
||
|
data: params
|
||
|
})
|
||
|
}
|
||
|
//详细隐私保护URL
|
||
|
export function wafLdpURLDetailApi(params) {
|
||
|
return request({
|
||
|
url: '/wafhost/ldpurl/detail',
|
||
|
method: 'get',
|
||
|
params: params
|
||
|
})
|
||
|
}
|