diff options
| author | wangxin <[email protected]> | 2018-12-12 14:50:11 +0600 |
|---|---|---|
| committer | wangxin <[email protected]> | 2018-12-12 14:50:11 +0600 |
| commit | e8f6aca4cf28c15b0fea867ddb5cdd94398c517c (patch) | |
| tree | 1da33347bc0f6a3efce3bd02c346dae755e6ae5c | |
| parent | 8174021d64713a92a37fbc7d57e7fe63078d5067 (diff) | |
app,基础协议,加密隧道行为日志页面隐藏协议来源,应用来源,行为来源,基础协议日志隐藏行为字段
| -rw-r--r-- | src/main/webapp/WEB-INF/views/log/manipulation/dkBehaviorList.jsp | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/src/main/webapp/WEB-INF/views/log/manipulation/dkBehaviorList.jsp b/src/main/webapp/WEB-INF/views/log/manipulation/dkBehaviorList.jsp index 081cf4c..63d212a 100644 --- a/src/main/webapp/WEB-INF/views/log/manipulation/dkBehaviorList.jsp +++ b/src/main/webapp/WEB-INF/views/log/manipulation/dkBehaviorList.jsp @@ -94,6 +94,7 @@ $(document).ready(function(){ <input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>
<input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>
<input id="functionId" name="functionId" type="hidden" value="${log.functionId}"/>
+ <c:set var="functionID" value="${log.functionId}"/>
<input id="isLogTotalSearch" name="isLogTotalSearch" type="hidden" value="${log.isLogTotalSearch}"/>
<!-- 筛选按钮展开状态-->
<input id="isFilterAction" name="isFilterAction" type="hidden" value="${log.isFilterAction }"/>
@@ -230,11 +231,13 @@ $(document).ready(function(){ <th class="sort-column entrance_id" isVisible="false"><spring:message code="entrance_id"/></th>
<th class="sort-column label_proto_id"><spring:message code='basic_protocol'/></th>
- <th class="sort-column label_proto_source" isVisible="false"><spring:message code='label_proto_source'/></th>
+ <%-- <th class="sort-column label_proto_source" isVisible="false"><spring:message code='label_proto_source'/></th> --%>
+ <c:if test="${functionID ne 407}">
<th class="sort-column label_behav_id"><spring:message code='behaviour_type'/></th>
- <th class="sort-column label_behav_source" isVisible="false"><spring:message code='label_behav_source'/></th>
+ </c:if>
+ <%-- <th class="sort-column label_behav_source" isVisible="false"><spring:message code='label_behav_source'/></th> --%>
<th class="sort-column label_app_id"><spring:message code='social_app'/></th>
- <th class="sort-column label_app_source" isVisible="false"><spring:message code='label_app_source'/></th>
+ <%-- <th class="sort-column label_app_source" isVisible="false"><spring:message code='label_app_source'/></th> --%>
<th class="sort-column cap_ip" isVisible="false"><spring:message code="clj_ip"/></th>
<th class="sort-column trans_proto"><spring:message code="protocol_type"/></th>
<th class="sort-column addr_type"><spring:message code='addr_type'/></th>
@@ -291,7 +294,6 @@ $(document).ready(function(){ </c:forEach>
<spring:message code="${entrances}"/>
</td>
-
<td>
<c:set var="labelProtoIds">${log.labelProtoId }</c:set>
<c:forEach items="${protocolList}" var="dict">
@@ -301,9 +303,10 @@ $(document).ready(function(){ </c:forEach>
<spring:message code="${labelProtoIds}"/>
</td>
- <td>
+ <%-- <td>
${log.labelProtoSource}
- </td>
+ </td> --%>
+ <c:if test="${functionID ne 407}">
<td>
<c:set var="labelBehavIds">${log.labelBehavId }</c:set>
<c:forEach items="${behaviorList}" var="dict">
@@ -313,9 +316,10 @@ $(document).ready(function(){ </c:forEach>
<spring:message code="${labelBehavIds}"/>
</td>
- <td>
+ </c:if>
+ <%-- <td>
${log.labelBehavSource}
- </td>
+ </td> --%>
<td>
<c:set var="labelAppIds">${log.labelAppId }</c:set>
<c:forEach items="${appList}" var="dict">
|
