RuoYi
2023-12-05 f74454b61a8f0050b1cdcfbf0c46b7c572c46e81
ruoyi-ui/src/api/monitor/operlog.js
@@ -7,4 +7,20 @@
    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'
  })
}