downloadAffix.jsp 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <%@ page language="java" contentType="text/html;charset=GBK"
  2. pageEncoding="GBK"%>
  3. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  5. <html>
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html;charset=GBK">
  8. <title>资料下载</title>
  9. <link href="${pageContext.request.contextPath }/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css" />
  10. <link href="${ pageContext.request.contextPath}/main.css" rel="stylesheet" type="text/css" />
  11. <script type="text/javascript" src="/shares/js/jquery-1.3.2.min.js"></script>
  12. <script type="text/javascript" src="/shares/js/constant.js"></script>
  13. <script type="text/javascript" src="/shares/js/common.js"></script>
  14. <script type="text/javascript" src="/shares/js/file.js"></script>
  15. </head>
  16. <body>
  17. <div class="forum-container">
  18. <center>
  19. <table class="l-table-edit line">
  20. <tr>
  21. <th colspan="2">下载资料附件</th>
  22. </tr>
  23. <c:choose>
  24. <c:when test="${!empty listFilialeDetailAffix}">
  25. <c:forEach var="list" items="${listFilialeDetailAffix }">
  26. <tr>
  27. <td style="width: 200px;">${list.filiale_data_name }</td>
  28. <td>
  29. <jsp:include page="/include/file.jsp">
  30. <jsp:param name="documentId" value="${list.filiale_data_affix }" />
  31. <jsp:param name="isView" value="1" />
  32. </jsp:include>
  33. </td>
  34. </tr>
  35. </c:forEach>
  36. </c:when>
  37. <c:otherwise>
  38. <tr>
  39. <td align="center">暂无资料……</td>
  40. </tr>
  41. </c:otherwise>
  42. </c:choose>
  43. <tr>
  44. <td colspan="2" style="text-align: center;">
  45. &nbsp;
  46. </td>
  47. </tr>
  48. </table>
  49. </center>
  50. </div>
  51. <%@ include file="/include/message.jsp"%>
  52. </body>
  53. </html>