陈嘉新
authored
|
1
2
|
import request from '@/utils/request'
// 字典表数据
|
陈嘉新
authored
|
3
4
5
6
7
8
|
export function GetDictWithDetailsLangs (data) {
return request({
url: '/api/System/GetDictWithDetailsLangs',
method: 'post',
data
})
|
陈嘉新
authored
|
9
10
|
}
// 接口日志-表格数据
|
陈嘉新
authored
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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
})
|
陈嘉新
authored
|
25
26
|
}
// 内容日志-表格数据
|
陈嘉新
authored
|
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
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
})
|
陈嘉新
authored
|
41
42
|
}
// 系统日志-表格数据
|
陈嘉新
authored
|
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
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
})
|
陈嘉新
authored
|
57
58
|
}
// 设备日志-表格数据
|
陈嘉新
authored
|
59
60
61
62
63
64
|
export function GetEquipmentExecutedLog (data) {
return request({
url: '/api/Log/GetEquipmentExecutedLog',
method: 'post',
data
})
|
|
65
|
}
|
陈嘉新
authored
|
66
67
68
69
70
71
72
73
|
// 设备日志-表格详情数据
export function GetEquipmentExecutedLogById (params) {
return request({
url: '/api/Log/GetEquipmentExecutedLogById',
method: 'get',
params
})
}
|