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.
29 lines
475 B
29 lines
475 B
import request from '@/utils/request'
|
|
|
|
export function getErrDetail(id) {
|
|
return request({
|
|
url: 'api/logs/error/' + id,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
export function delAllError() {
|
|
return request({
|
|
url: 'api/logs/del/error',
|
|
method: 'delete'
|
|
})
|
|
}
|
|
|
|
export function delAllInfo() {
|
|
return request({
|
|
url: 'api/logs/del/info',
|
|
method: 'delete'
|
|
})
|
|
}
|
|
|
|
export function logQuery() {
|
|
return request({
|
|
url: 'api/logs/logquery',
|
|
method: 'get'
|
|
})
|
|
}
|
|
|