This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nms-oam/gloam/WebRoot/auditlog/auditlog-index.html
2018-09-27 16:28:35 +08:00

108 lines
3.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
#include("/common/header.html")
<script>
//修改每页显示条数后 跳转页面
function queryData(val,url){
var newPageSize = document.getElementById("newPageSize").value;
window.location.href=url+"1-"+newPageSize;
}
</script>
</head>
<body class="bcColor noScroll-y aC">
<!--中间部分右边开始-->
<div class="container-fluid-full">
<div class="row-fluid">
<noscript>
<div class="alert alert-block span10">
<h4 class="alert-heading">
Warning!
</h4>
<p>
You need to have
<a href="http://en.wikipedia.org/wiki/JavaScript"
target="_blank">JavaScript</a> enabled to use this site.
</p>
</div>
</noscript>
<!-- start: Content -->
<div id="content" class="span10">
<div class="row-fluid " style="margin-top:10px">
<div class="box span12">
<div class="box-header" data-original-title>
<h2>
<i class=" halflings-icon align-justify"></i><span
class="break"></span>
</h2>
</div>
<div class="box-content lianxiang">
<table class="table table-striped table-bordered" id="info">
<thead>
<tr>
<th style='text-align:center;vertical-align: middle;'>
<span>#(_res.get("creater"))</span>
</th>
<th style='text-align:center;vertical-align: middle;'>
<span>#(_res.get("explain"))</span>
</th>
<th style='text-align:center;vertical-align: middle;'>
<span>#(_res.get("create.time"))</span>
</th>
<th style='text-align:center;vertical-align: middle;'>
<span>#(_res.get("ip"))</span>
</th>
<th style='text-align:center;vertical-align: middle;'>
<span>#(_res.get("uri"))</span>
</th>
<th style='text-align:center;vertical-align: middle;'>
<span>#(_res.get("request.way"))</span>
</th>
</tr>
</thead>
<tbody>
#if(auditLog.getList()!=null&&auditLog.getList().size()!=0)
#for(x : auditLog.getList())
<tr class="odd gradeX">
<td class="logmessage">
<span>#(x.create_by)</span>
</td>
<td class="logmessage">
<span>#(_res.get(x.remarks))</span>
</td>
<td class="logmessage">
<span>#(x.create_date)</span>
</td>
<td class="logmessage">
<span>#(x.remote_addr)</span>
</td>
<td class="logmessage">
<span>#(x.request_uri)</span>
</td>
<td class="logmessage">
<span>#(x.method)</span>
</td>
</tr>
#end
#else
<tr>
<td colspan="6" height="35"
align="center">
没有记录
</td>
</tr>
#end
</tbody>
</table>
#@pageSplite(auditLog.pageNumber, auditLog.totalPage,auditLog.totalRow,auditLog.pageSize, "/auditlog/")
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>