| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <%@ page contentType="text/html;charset=GBK"%>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <title>版本信息</title>
- <meta http-equiv="Content-Type" content="text/html; charset=GBK">
- <link type="text/css" rel="stylesheet" href="/shares/css/yw/master1/reset.css" />
- <script src="/shares/js/jquery-1.6.4.min.js" type="text/javascript"></script>
- <script type="text/javascript" src="/shares/js/common.js"></script>
- <style type="text/css">
- body{
- color:#fff;
- }
- td,th{
- border:1px solid #fff;
- padding-left:3px;
- }
- th{
- background:#ccc;
- color:#000;
- }
- .line{
- width:100%;
- }
- </style>
- </head>
- <body>
- <div style="height:80px;padding-top:5px;padding-left:5px;">
- 版本类型:${version}<p/>
- 授权:${day}<p/>
- <c:if test="${version == '试用版'}">
- 已使用:${runDate}
- </c:if>
- </div>
- <div style="">
- <Table border="0" cellspacing="1" cellpadding="0" class="line">
- <tr>
- <th width='150px'>系统名称</th>
- <th width='120px'>发布版本</th>
- <th width='220px'>发布时间</th>
-
- <th>描述</th>
- </tr>
- <c:forEach items="${pluginModels}" var="pm">
- <tr>
- <td>${pm.name}</td>
- <td>${pm.version}</td>
- <td>${pm.publishDate}</td>
- <td>${pm.desc}</td>
- </tr>
- </c:forEach>
- </Table>
- </div>
- </body>
- </html>
|