index.js
1.68 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import request from '@/utils/request'
// 字典表数据
export function GetDictWithDetailsLangs (data) {
return request({
url: '/api/System/GetDictWithDetailsLangs',
method: 'post',
data
})
}
// 接口日志-表格数据
export function GetInterfaceLog (data) {
return request({
url: '/api/Log/GetInterfaceLog',
method: 'post',
data
})
}
// 接口日志-表格详情数据
export function GetInterfaceLogById (params) {
return request({
url: '/api/Log/GetInterfaceLogById',
method: 'get',
params
})
}
// 内容日志-表格数据
export function GetContentLog (data) {
return request({
url: '/api/Log/GetContentLog',
method: 'post',
data
})
}
// 内容日志-表格详情数据
export function GetContentLogById (params) {
return request({
url: '/api/Log/GetContentLogById',
method: 'get',
params
})
}
// 系统日志-表格数据
export function GetSysLog (data) {
return request({
url: '/api/Log/GetSysLog',
method: 'post',
data
})
}
// 系统日志-表格详情数据
export function GetSysLogById (params) {
return request({
url: '/api/Log/GetSysLogById',
method: 'get',
params
})
}
// 设备日志-表格数据
export function GetEquipmentExecutedLog (data) {
return request({
url: '/api/Log/GetEquipmentExecutedLog',
method: 'post',
data
})
}
// 设备日志-表格详情数据
export function GetEquipmentExecutedLogById (params) {
return request({
url: '/api/Log/GetEquipmentExecutedLogById',
method: 'get',
params
})
}