| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <%@ page language="java" contentType="text/html;charset=GBK"
- pageEncoding="GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html;charset=GBK">
- <title>资料下载</title>
- <link href="${pageContext.request.contextPath }/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css" />
- <link href="${ pageContext.request.contextPath}/main.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript" src="/shares/js/jquery-1.3.2.min.js"></script>
- <script type="text/javascript" src="/shares/js/constant.js"></script>
- <script type="text/javascript" src="/shares/js/common.js"></script>
- <script type="text/javascript" src="/shares/js/file.js"></script>
- </head>
- <body>
- <div class="forum-container">
- <center>
- <table class="l-table-edit line">
- <tr>
- <th colspan="2">下载资料附件</th>
- </tr>
-
- <c:choose>
- <c:when test="${!empty listFilialeDetailAffix}">
- <c:forEach var="list" items="${listFilialeDetailAffix }">
- <tr>
- <td style="width: 200px;">${list.filiale_data_name }</td>
- <td>
- <jsp:include page="/include/file.jsp">
- <jsp:param name="documentId" value="${list.filiale_data_affix }" />
- <jsp:param name="isView" value="1" />
- </jsp:include>
- </td>
- </tr>
- </c:forEach>
- </c:when>
- <c:otherwise>
- <tr>
- <td align="center">暂无资料……</td>
- </tr>
- </c:otherwise>
- </c:choose>
- <tr>
- <td colspan="2" style="text-align: center;">
-
- </td>
- </tr>
- </table>
- </center>
- </div>
- <%@ include file="/include/message.jsp"%>
- </body>
- </html>
|