he wei
2025-04-03 c6a2d2debf161b987ff91c6ac9560d10fc98c54b
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 getLockLog(pageNum, pageSize, data) {
  return request({
    url: 'areaInf/getLockLog',
    method: 'POST',
    params: { pageNum, pageSize },
    data
  });
}
 
/**
 * 查询系统日志
 */
export function getSysLog(data) {
  return request({
    url: 'operationLog/getPage',
    method: 'POST',
    data
  });
}
 
/**
 * 事件列表 下拉
 */
export function getTypes() {
  return request({
    url: 'operationLog/getTypes',
    method: 'GET'
  });
}