日志修改动作参数为service,流量统计client改为由连接池工具clientUtil中获取

This commit is contained in:
zhanghongqing
2018-11-22 19:25:25 +08:00
parent 6a9f2025a2
commit 73d4bfee8b
32 changed files with 99 additions and 132 deletions

View File

@@ -60,13 +60,13 @@ $(document).ready(function(){
<!-- 搜索内容与操作按钮栏 -->
<div class="col-md-12">
<div class="pull-left">
<form:select path="action" class="selectpicker select2 input-small">
<form:select path="service" class="selectpicker select2 input-small">
<%-- <form:option value=""><spring:message code="action"/></form:option> --%>
<c:forEach items="${serviceList}" var="service"
varStatus="satus">
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
<form:option value="${dict.itemCode}"><spring:message code="${dict.itemValue}"/></form:option>
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
</c:if>
</c:forEach>
</c:forEach>