疯狂的狮子li
2021-10-20 82f1f5d0cf1b51a5d81915e842e01760f404fa74
ruoyi-ui/src/api/monitor/operlog.js
对比新文件
@@ -0,0 +1,26 @@
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'
  })
}