Files
pqs-9100_client/frontend/src/api/system/log/logData.ts
2024-11-18 09:02:57 +08:00

76 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type {Sys_Log_Audit} from "./interface/log"
const logdata = ref<Sys_Log_Audit.Audit_LogList[]>([
{
id: '1',
operate_Type:'操作日志',
ip:'192.168.1.139',
result: '登陆成功',
remark: 'Admin用户09:35:47,790 登录系统',
warn:0,
create_By:'Admin',
create_Time:'2024-10-16 12:13:14',
},
{
id: '2',
operate_Type:'操作日志',
ip:'192.168.1.139',
result: '新建成功',
remark: 'Admin用户09:35:47,891 新建设备 “模拟式装置1”',
warn:0,
create_By:'Admin',
create_Time:'2024-10-16 12:13:14',
},
{
id: '3',
operate_Type:'操作日志',
ip:'192.168.1.139',
result: '新建成功',
remark: 'User用户 09:35:56,391 新建设备 “模拟式装置2”',
warn:0,
create_By:'User',
create_Time:'2024-10-16 12:13:14',
},
{
id: '4',
operate_Type:'操作日志',
ip:'192.168.1.139',
result: '操作成功',
remark: 'Admin用户09:35:59,977 对 “模拟式装置1”开始进行自动检测',
warn:0,
create_By:'Admin',
create_Time:'2024-10-16 12:13:14',
},
{
id: '5',
operate_Type:'操作日志',
ip:'192.168.1.139',
result: '操作成功',
remark: 'User用户09:36:02,229 对 “模拟式装置2”开始进行自动检测',
warn:0,
create_By:'User',
create_Time:'2024-10-16 12:13:14',
},
{
id: '6',
operate_Type:'告警日志',
ip:'192.168.1.139',
result: 'warn警告',
remark: 'DKLN源回复报文异常已丢弃。报文长度为XX内容为“XXXXXXX”',
warn:1,
create_By:'Admin',
create_Time:'2024-10-16 12:13:14',
},
{
id: '7',
operate_Type:'告警日志',
ip:'192.168.1.205',
result: '报告触发失败',
remark: 'ip192.168.1.205 的装置第1通道触发QVVR01报告失败',
warn:1,
create_By:'AA',
create_Time:'2024-10-16 12:13:14',
},
])
export default logdata