日志查询 增加日志一列
This commit is contained in:
@@ -178,6 +178,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -219,9 +220,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -169,6 +169,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -210,9 +211,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -167,6 +167,7 @@
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -203,9 +204,10 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -159,6 +159,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -202,9 +203,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -176,6 +176,7 @@
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -221,9 +222,10 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -170,6 +170,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -207,9 +208,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -200,6 +200,7 @@
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -237,9 +238,10 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -176,6 +176,7 @@
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -221,9 +222,10 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -169,6 +169,7 @@
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -202,9 +203,10 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -156,6 +156,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -193,9 +194,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -168,6 +168,7 @@
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -206,9 +207,10 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -167,6 +167,7 @@
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -208,9 +209,10 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -168,6 +168,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -210,9 +211,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -167,6 +167,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -209,9 +210,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -168,6 +168,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -210,9 +211,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -167,6 +167,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -209,9 +210,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -164,6 +164,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -206,9 +207,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -167,6 +167,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -209,9 +210,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -167,6 +167,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -209,9 +210,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -224,6 +224,7 @@
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -266,9 +267,10 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -167,6 +167,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -209,9 +210,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -167,6 +167,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -209,9 +210,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -166,6 +166,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -208,9 +209,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -167,6 +167,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -209,9 +210,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -166,7 +166,8 @@ $(document).ready(function(){
|
|||||||
<div class="table-responsive">
|
<div class="table-responsive">
|
||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -209,9 +210,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -167,6 +167,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -217,9 +218,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -167,6 +167,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -217,9 +218,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -167,6 +167,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -217,9 +218,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -167,6 +167,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -202,9 +203,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -169,6 +169,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -209,9 +210,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -184,6 +184,7 @@
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -222,9 +223,10 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -166,6 +166,7 @@
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -203,9 +204,10 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -169,6 +169,7 @@ $(document).ready(function(){
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -211,9 +212,10 @@ $(document).ready(function(){
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -175,6 +175,7 @@
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -214,9 +215,10 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
@@ -154,6 +154,7 @@
|
|||||||
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
<table id="contentTable" class="table table-striped table-bordered table-condensed text-nowrap logTb">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th><spring:message code="log"/></th>
|
||||||
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
<th class="sort-column cfg_id " isVisible="false" ><spring:message code="cfg_id"/></th>
|
||||||
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
<th class="sort-column service" isVisible="false"><spring:message code="action"/></th>
|
||||||
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
<th class="sort-column found_time"><spring:message code="found_time"/></th>
|
||||||
@@ -203,9 +204,10 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="log" items="${page.list }" varStatus="status">
|
<c:forEach var="log" items="${page.list }" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<td>${log.cfgId }
|
<td>
|
||||||
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
<a href="javascript:void(0)" name="viewLogInfo"><i class="icon-book-open"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
<td>${log.cfgId }</td>
|
||||||
<td>
|
<td>
|
||||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||||
<c:if test="${dict.itemCode eq log.action}">
|
<c:if test="${dict.itemCode eq log.action}">
|
||||||
|
|||||||
Reference in New Issue
Block a user