proxy intercept模块的monitor动作展示位Intercept

This commit is contained in:
duandongmei
2018-11-02 11:23:49 +08:00
parent 2402aff648
commit 1a01f78a08
3 changed files with 22 additions and 36 deletions

View File

@@ -203,7 +203,10 @@
value="${service.action }" class="required action"
<c:if test="${_cfg.action==service.action || (_cfg.action==null && satus.index==0)}">checked</c:if>>
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
<c:if test="${dict.itemCode eq service.action }">
<c:if test="${(dict.itemCode eq service.action) && (service.action eq 1) }">
<spring:message code="intercept"/>
</c:if>
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 1) }">
<spring:message code="${dict.itemValue }"/>
</c:if>
</c:forEach>

View File

@@ -172,7 +172,12 @@
<form:select id="actionSelect" path="action" class="selectpicker select2 input-small" >
<form:option value=""><spring:message code="select"/></form:option>
<c:forEach items="${serviceList}" var="service">
<form:option value="${service.action }"><spring:message code="action_${service.actionCode }"/></form:option>
<c:if test="${service.action eq 1}">
<form:option value="${service.action }"><spring:message code="intercept"/></form:option>
</c:if>
<c:if test="${service.action ne 1}">
<form:option value="${service.action }"><spring:message code="action_${service.actionCode }"/></form:option>
</c:if>
</c:forEach>
</form:select>
<form:select path="isValid" class="selectpicker select2 input-small" >
@@ -390,11 +395,18 @@
<td>${indexCfg.compileId }</td>
<td>${indexCfg.cfgDesc }</td>
<td>
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
<c:if test="${dict.itemCode eq indexCfg.action }">
<spring:message code="${dict.itemValue }"/>
</c:if>
</c:forEach>
<c:if test="${indexCfg.action eq 1}">
<spring:message code="intercept"/>
</c:if>
<c:if test="${indexCfg.action ne 1}">
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
<c:if test="${dict.itemCode eq indexCfg.action }">
<spring:message code="${dict.itemValue }"/>
</c:if>
</c:forEach>
</c:if>
</td>
<c:if test="${cfg.functionId ne 212 }">