Commit 314ae316 authored by huagnxiner's avatar huagnxiner

回访跟踪报表修改部门过滤代码

parent 55dab5de
...@@ -29,21 +29,25 @@ ...@@ -29,21 +29,25 @@
<c:otherwise> <c:otherwise>
<form id="filterForm" name="filterForm" class="form-inline filterForm" <form id="filterForm" name="filterForm" class="form-inline filterForm"
action="${ctx}/statistic/callBackTraceStatistic" method="get"> action="${ctx}/statistic/callBackTraceStatistic" method="get">
<c:forEach items="${departments}" var="dept"> <div class="row-fluid">
<li <c:if test="${dept.id == deptId}">class="active"</c:if>> <ul class="nav nav-tabs" style="margin-bottom: 0;position: relative;">
<c:choose> <c:forEach items="${departments}" var="dept">
<c:when test="${dept.id == deptId}"> <li <c:if test="${dept.id == deptId}">class="active"</c:if>>
<a href="#">${dept.name}</a> <c:choose>
</c:when> <c:when test="${dept.id == deptId}">
<c:when test="${dept.id != deptId}"> <a href="#">${dept.name}</a>
<a href="${ctx}/statistic/callBackTraceStatistic?deptId=${dept.id}&pageSize=${param['pageSize']}">${dept.name}</a> </c:when>
</c:when> <c:when test="${dept.id != deptId}">
<c:otherwise> <a href="${ctx}/statistic/callBackTraceStatistic?deptId=${dept.id}&pageSize=${param['pageSize']}">${dept.name}</a>
</c:when>
<c:otherwise>
</c:otherwise> </c:otherwise>
</c:choose> </c:choose>
</li> </li>
</c:forEach> </c:forEach>
</ul>
</div>
<div style="margin-top:10px;"> <div style="margin-top:10px;">
&nbsp;&nbsp;数据日期:&nbsp;&nbsp; &nbsp;&nbsp;数据日期:&nbsp;&nbsp;
<input type="text" name="startTime" id="startTime" value="${startTime}" <input type="text" name="startTime" id="startTime" value="${startTime}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment