汇联通执法队后台管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

queryResult.jsp 873B

1234567891011121314151617181920212223242526272829
  1. <%@ page contentType="text/html;charset=utf-8"%>
  2. <%@ include file="/WEB-INF/jsp/include.jsp"%>
  3. <div>
  4. <div class="searchCondtion">${param.year }年${paramMonth.value}月</div>
  5. <div id="taiji_search_data">
  6. <table>
  7. <c:forEach items="${days}" var="week" >
  8. <tr>
  9. <c:forEach items="${week}" var="d" >
  10. <td>
  11. <c:choose>
  12. <c:when test="${not d.inWork }">
  13. <a id="${d.day }" href="#" style="color:red" class="cal-click">${d.day.dayOfMonth}</a>
  14. </c:when>
  15. <c:when test="${d.day.month!=param.month }">
  16. <a id="${d.day }" href="#" style="color:rgb(191, 191, 197)" class="cal-click">${d.day.dayOfMonth}</a>
  17. </c:when>
  18. <c:otherwise>
  19. <a id="${d.day }" href="#" class="cal-click">${d.day.dayOfMonth}</a>
  20. </c:otherwise>
  21. </c:choose>
  22. </td>
  23. </c:forEach>
  24. </tr>
  25. </c:forEach>
  26. </table>
  27. </div>
  28. </div>