?? thingtome1.jsp
字號:
<%@ page contentType="text/html;charset=GB2312" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<%@ page isELIgnored="false"%>
<html>
<body bgcolor="#DCDADA">
當前位置:行政審批-->安排審批事務<br>
<c:if test="${empty sessionScope.oaUserId}">
<c:redirect url="../user/login.jsp"/>
</c:if>
<table border="1" CELLSPACING=0 CELLPADDING=0>
<tr><td colspan="3" align="center">
查看我的審批記錄(共${requestScope.allRecordCount}條,當前頁${requestScope.pageRecordCount}條)
<c:if test="${requestScope.diPage!=1}">
<a href='viewMeThingList.do?diPage=1'>首頁</a>
<a href='viewMeThingList.do?diPage=${requestScope.diPage-1}'>上一頁</a>
</c:if>
<c:if test="${requestScope.diPage!=requestScope.pageCount&&requestScope.pageCount!=0}">
<a href='viewMeThingList.do?diPage=${requestScope.diPage+1}'>下一頁</a>
<a href='viewMeThingList.do?diPage=${requestScope.pageCount}'>尾頁</a>
</c:if>
</td>
</tr>
<tr><td>審批事務標題</td>
<td>查看詳細說明與審批記錄?</td>
<td>審批?</td>
</tr>
<c:forEach items="${requestScope.rsArray}" var="record">
<tr><td>[${fn:substring(record[2],0,10)}]${record[1]}</td>
<td><a href="#" onclick="window.open('viewThing.do?thingId=${record[0]}')">查看</a></td>
<td><a href="enterArraMe.do?thingId=${record[0]}&thingArraId=${record[3]}" target="_blank">審批</a></td>
</tr>
</c:forEach>
</table>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -