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.
35 lines
672 B
35 lines
672 B
import request from '@/utils/request' |
|
|
|
// 查询操作日志列表 |
|
export function list(query) { |
|
return request({ |
|
url: '/monitor/operlog/list', |
|
method: 'get', |
|
params: query |
|
}) |
|
} |
|
|
|
// 删除操作日志 |
|
export function delOperlog(operId) { |
|
return request({ |
|
url: '/monitor/operlog/' + operId, |
|
method: 'delete' |
|
}) |
|
} |
|
|
|
// 清空操作日志 |
|
export function cleanOperlog() { |
|
return request({ |
|
url: '/monitor/operlog/clean', |
|
method: 'delete' |
|
}) |
|
} |
|
|
|
// 导出操作日志 |
|
export function exportOperlog(query) { |
|
return request({ |
|
url: '/monitor/operlog/export', |
|
method: 'get', |
|
params: query |
|
}) |
|
} |