日志音视频样例修改字段显示,增加字段国际化

This commit is contained in:
zhanghongqing
2018-07-18 20:34:55 +08:00
parent 4899fe7ba3
commit 466f7d4cb4
5 changed files with 30 additions and 9 deletions

View File

@@ -214,7 +214,12 @@ $(document).ready(function(){
<td>${log.logUri}</td>
<td>${log.refer}</td>
<td>${log.level}</td>
<td>${log.fdType}</td>
<!--0动态黑名单FD1静态配置FD2首次分析命中 -->
<td>
<c:if test="${log.fdType eq 0 }"><spring:message code="black_block_list"/></c:if>
<c:if test="${log.fdType eq 1 }"><spring:message code="static_cfg_block"/></c:if>
<c:if test="${log.fdType eq 2 }"><spring:message code="first_hit"/></c:if>
</td>
<td>${log.protocol}</td>
<td>${log.foundTime}</td>

View File

@@ -214,7 +214,12 @@ $(document).ready(function(){
<td>${log.logUri}</td>
<td>${log.refer}</td>
<td>${log.level}</td>
<td>${log.fdType}</td>
<!--0动态黑名单FD1静态配置FD2首次分析命中 -->
<td>
<c:if test="${log.fdType eq 0 }"><spring:message code="black_block_list"/></c:if>
<c:if test="${log.fdType eq 1 }"><spring:message code="static_cfg_block"/></c:if>
<c:if test="${log.fdType eq 2 }"><spring:message code="first_hit"/></c:if>
</td>
<td>${log.protocol}</td>
<td>${log.foundTime}</td>

View File

@@ -252,7 +252,12 @@ $(document).ready(function(){
<td>${log.pid}</td>
<td>${log.logUri}</td>
<td>${log.level}</td>
<td>${log.fdType}</td>
<!--0动态黑名单FD1静态配置FD2首次分析命中 -->
<td>
<c:if test="${log.fdType eq 0 }"><spring:message code="black_block_list"/></c:if>
<c:if test="${log.fdType eq 1 }"><spring:message code="static_cfg_block"/></c:if>
<c:if test="${log.fdType eq 2 }"><spring:message code="first_hit"/></c:if>
</td>
</tr>
</c:forEach>