?? approve_history.jsp
字號:
<%@ page language="java" contentType="text/html; charset=GB18030"
pageEncoding="GB18030"%>
<%@ include file="/common/common.jsp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>公文審批歷史</title>
</head>
<body>
<logic:empty name="historys">
尚未有審批歷史記錄!
</logic:empty>
<logic:notEmpty name="historys">
<logic:iterate id="history" name="historys">
<hr>
審批人:<c:out value="${history.approver.person.name }"/><br>
審批時間:<c:out value="${history.approveTime }"/><br>
審批意見:<c:out value="${history.comment }"/><br>
<br>
</logic:iterate>
</logic:notEmpty>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -