WXL
6 天以前 d4744cf753eb43c858a48fcf51b07b32c86b740c
src/api/monitor/operlog.js
@@ -12,15 +12,15 @@
// 删除操作日志
export function delOperlog(operId) {
  return request({
    url: '/monitor/operlog/' + operId,
    method: 'delete'
    url: '/monitor/operlog/remove/' + operId,
    method: 'get'
  })
}
// 清空操作日志
export function cleanOperlog() {
  return request({
    url: '/monitor/operlog/clean',
    method: 'delete'
    url: '/monitor/operlog/clean/remove',
    method: 'get'
  })
}