sysFilePictureShow.jsp 507 B

123456789101112131415161718192021
  1. <%--
  2. time:2011-11-26 18:19:16
  3. --%>
  4. <%@page language="java" pageEncoding="UTF-8"%>
  5. <%@include file="/commons/include/html_doctype.html"%>
  6. <%@include file="/commons/include/getById.jsp" %>
  7. <html>
  8. <head>
  9. <title>图片:${title}明细</title>
  10. </head>
  11. <body>
  12. <div class="panel">
  13. <div class="panel-body">
  14. <div class="panel-detail">
  15. <img alt="${title}" src="${ctx}/platform/system/sysFile/getFileById.ht?type=${type}&fileId=${id}" width="100%" height="100%">
  16. </div>
  17. </div>
  18. </div>
  19. </body>
  20. </html>