|
@@ -7,7 +7,7 @@
|
|
|
<%@ include file="../common.jsp"%>
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
<title>Insert title here</title>
|
|
|
-
|
|
|
+<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
|
|
|
<script type="text/javascript" src="../js/jquery-1.4.4.min.js"></script>
|
|
|
<script type="text/javascript" src="../js/jquery.ztree.core-3.5.js"></script>
|
|
|
<script type="text/javascript" src="../js/jquery.ztree.excheck-3.5.js"></script>
|
|
@@ -26,7 +26,8 @@
|
|
|
<div class="list_news">
|
|
|
<c:forEach items="${dbfwList}" var="fw" varStatus="status">
|
|
|
<ul id="ul-type${status.index+1}">
|
|
|
- <li class="fl">${status.index+1} <a href="${dbfwdz }${fw.id }">${fw.bt }</a></li>
|
|
|
+ <li class="fl">${status.index+1} <a target="_blank" href="${dbfwdz }${fw.id }">${fw.title }</a></li>
|
|
|
+ <li class="fr"><fmt:formatDate value='${fw.dbDate}' pattern="yyyy-MM-dd" type="date" dateStyle="long" /></li>
|
|
|
</ul>
|
|
|
</c:forEach>
|
|
|
</div>
|
|
@@ -38,7 +39,8 @@
|
|
|
<div class="list_news">
|
|
|
<c:forEach items="${dbswList}" var="sw" varStatus="status">
|
|
|
<ul id="ul-type${status.index+1}" >
|
|
|
- <li class="fl">${status.index+1} <a href="${dbswdz }${sw.id }">${sw.bt }</a></li>
|
|
|
+ <li class="fl">${status.index+1} <a target="_blank" href="${dbswdz }${sw.id }">${sw.title }</a></li>
|
|
|
+ <li class="fr"><fmt:formatDate value='${sw.dbDate}' pattern="yyyy-MM-dd" type="date" dateStyle="long" /></li>
|
|
|
</ul>
|
|
|
</c:forEach>
|
|
|
</div>
|