bgp日志type字段换成字典取值,as字段换成asNum

This commit is contained in:
wangxin
2018-10-10 16:55:34 +08:00
parent 8d48d9a354
commit 653b56f5c6
3 changed files with 13 additions and 7 deletions

View File

@@ -248,8 +248,12 @@
<td>${log.dAsn}</td>
<td>${log.sSubscribeId}</td>
<td>${log.dSubscribeId}</td>
<td>${log.type}</td>
<td>${log.as}</td>
<td>
<c:forEach items="${fns:getDictList('BGP_MESSAGE_TYPE')}" var="type">
<c:if test="${type.itemCode eq log.type}">${type.itemValue}</c:if>
</c:forEach>
</td>
<td>${log.asNum}</td>
<td>${log.route}</td>
</tr>
</c:forEach>