shikeying
2023-02-24 a421bf9bdf8e7b30b1995041134425c6754d49af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import request from '@/utils/request'
 
// 查询操作日志列表
export function list(query) {
  return request({
    url: '/monitor/operate_log/list',
    method: 'get',
    params: query
  })
}
 
export function listBusinessType() {
  return request({
    url: '/monitor/operate_log/select/get_business_type',
    method: 'get'
    // params: query
  })
}
 
// 删除操作日志
export function delOperlog(operId) {
  return request({
    url: '/monitor/operate_log/' + operId,
    method: 'get'
  })
}
 
// 清空操作日志
export function cleanOperlog() {
  return request({
    url: '/monitor/operate_log/select/clean',
    method: 'get'
  })
}