补充日志url加http前缀

This commit is contained in:
zhanghongqing
2018-08-13 14:29:20 +08:00
parent ad9aca91f3
commit a029ff9b25

View File

@@ -211,7 +211,14 @@ $(document).ready(function(){
</td>
<td>${log.pid}</td>
<td>${log.url}</td>
<td>
<c:if test="${fn:startsWith(log.url, 'http')}">
${log.url}
</c:if>
<c:if test="${!fn:startsWith(log.url, 'http') and !empty log.url}">
http://${log.url}
</c:if>
</td>
<td>
<c:if test="${fn:startsWith(log.logUri, 'http')}">
<a href="${log.logUri}" data-original-title="${log.logUri}" target="_blank"