zhaoxc5
2023-12-25 08d0326718c52f1f7bfbaa265ec3177ea900ec4c
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'
  })
}