searchResult.jsp 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <%@ page contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="/webpage/include/taglibf.jsp"%>
  3. <!doctype html>
  4. <html>
  5. <head>
  6. <meta charset="utf-8">
  7. <title>${fns:getConfig("productName")}-服务指南搜索结果</title>
  8. <link rel="stylesheet" type="text/css" href="${ctxStaticWeb}/css/base.css" />
  9. <link rel="stylesheet" type="text/css" href="${ctxStaticWeb}/css/second.css" />
  10. <style>
  11. .new_l,.new_r{ margin:10px 0px;}
  12. .new_l{background-color:#FFF}
  13. .new_l h2{ border-bottom:1px solid #CCC; border-top:1px solid #CCC; line-height:30px; font-size:14px; background-color:#f8f8f8;}
  14. .new_l h2 a{color:#820402}
  15. .new_l dd{ line-height:36px; padding-left:30px; background:url(${ctxStaticWeb}/images/icon.png) no-repeat 10px 18px;}
  16. .new_l dd span{ float:right}
  17. .new_l dd a{ color:#666; font-size:14px;}
  18. .line_01{ border-bottom:1px dashed #ddd; margin:20px 0px;}
  19. .new_r h2{ line-height:60px; border-top:4px solid #aa1324; font-size:24px; background-color:#820402; color:#FFF; text-align:center}
  20. .new_r li{ line-height:58px; border-bottom:solid 1px #e5e5e5; background-color:#fff}
  21. .new_r li a{ color:#666; line-height:57px; font-size:18px; padding-left:90px; background:url(${ctxStaticWeb}/images/icon_10.png) no-repeat 50px 0px;}
  22. .new_r li a:hover{color:#F00}
  23. .line_40{ line-height:50px; border-bottom:1px dashed #ddd; }
  24. </style>
  25. <script src="${pageContext.request.contextPath}/static/web/js/jquery-2.1.4.js"></script>
  26. </head>
  27. <body>
  28. <%@ include file="/webpage/modules/web/top.jsp"%>
  29. <div class="second_banner"><div class="c second_banner_txt"><strong>服务指南</strong></div></div>
  30. <div class="c">
  31. <div class="new_l">
  32. <h2>&nbsp;&nbsp;&nbsp;当前位置:<a href="${ctx}/home">首页</a> &gt;服务指南 </h2>
  33. <c:if test="${fn:length(dealSearchList) ==0}">
  34. <dl>
  35. <dd class="line_40">
  36. <font style="color:#ff391b" size="2">搜索关键字:“${param.title}”,未查询到服务指南事项。</font>
  37. </dd>
  38. </dl>
  39. </c:if>
  40. <c:if test="${fn:length(dealSearchList) >0}">
  41. <dl>
  42. <dd class="line_40">
  43. <font style="color: #820402" size="3">搜索关键字:“${param.title}”,共找到如下相关服务指南事项:</font>
  44. </dd>
  45. </dl>
  46. <c:forEach items="${dealSearchList}" var="obj" >
  47. <dl>
  48. <dd class="line_40"><a href="${ctxF}/detail?id=${obj.id}">${obj.title}</a><span>[ ${fns:formatDateTime(obj.updateDate)} ]</span></dd>
  49. </dl>
  50. </c:forEach>
  51. </c:if>
  52. </div>
  53. </div>
  54. <div class="clear" ></div>
  55. <%@ include file="/webpage/modules/web/footer.jsp"%>
  56. </body>
  57. </html>