加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
audit.htm 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
Ecava_IGX 提交于 2022-08-16 14:23 . 上传工程文件
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>ECAVA IntegraXor - Event Viewer</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<link href="system/styles/igrX.css" rel="stylesheet" type="text/css" />
<style>
.alarm-table .active {
background-color: LightBlue ;
}
.alarm-table .inactive {
background-color: LightGreen ;
}
.cp-table {
min-width: 800px;
}
.alarm-table {
min-width: 800px;
}
</style>
</head>
<body>
<div class="alarm" id="rtalarm"></div>
</body>
<script type="text/javascript" src="system/scripts/igrX.js"></script>
<script type="text/javascript">
var opt = {
"mode": "audit",
"row-per-page": 30,
"column": {
"time_stamp": true,
"tag_name": false,
"group_name": true,
"description": false,
"message": true,
"nvalue": true,
"old_nvalue": true,
"svalue": false,
"old_svalue": false,
"inactive_timestamp": true
}
};
var alrm = igrx.alarm( document.getElementById('rtalarm'), opt);
</script>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化