version.jsp 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <%@ page contentType="text/html;charset=GBK"%>
  2. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
  3. <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  5. <html>
  6. <head>
  7. <title>版本信息</title>
  8. <meta http-equiv="Content-Type" content="text/html; charset=GBK">
  9. <link type="text/css" rel="stylesheet" href="/shares/css/yw/master1/reset.css" />
  10. <script src="/shares/js/jquery-1.6.4.min.js" type="text/javascript"></script>
  11. <script type="text/javascript" src="/shares/js/common.js"></script>
  12. <style type="text/css">
  13. body{
  14. color:#fff;
  15. }
  16. td,th{
  17. border:1px solid #fff;
  18. padding-left:3px;
  19. }
  20. th{
  21. background:#ccc;
  22. color:#000;
  23. }
  24. .line{
  25. width:100%;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div style="height:80px;padding-top:5px;padding-left:5px;">
  31. 版本类型:${version}<p/>
  32. 授权:${day}<p/>
  33. <c:if test="${version == '试用版'}">
  34. 已使用:${runDate}
  35. </c:if>
  36. </div>
  37. <div style="">
  38. <Table border="0" cellspacing="1" cellpadding="0" class="line">
  39. <tr>
  40. <th width='150px'>系统名称</th>
  41. <th width='120px'>发布版本</th>
  42. <th width='220px'>发布时间</th>
  43. <th>描述</th>
  44. </tr>
  45. <c:forEach items="${pluginModels}" var="pm">
  46. <tr>
  47. <td>${pm.name}</td>
  48. <td>${pm.version}</td>
  49. <td>${pm.publishDate}</td>
  50. <td>${pm.desc}</td>
  51. </tr>
  52. </c:forEach>
  53. </Table>
  54. </div>
  55. </body>
  56. </html>