📄 overdateuser.jsp
字号:
<%@ page language="java" pageEncoding="utf-8"%>
<%@page import="com.jxyd.common.Fenye"%>
<%@page import="java.util.ArrayList"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>
<%
String Path = request.getContextPath();
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
<head>
<link href="<%=Path%>/css/style.css" rel="stylesheet">
<link href="<%=Path%>/css/main.css" rel="stylesheet">
<script type="text/javascript">
function ok(){
document.showform.action="muser.do?method=RemindOverDateUser";
document.showform.submit();
return true;
}
</script>
</head>
<body>
<form action="" name="showform" method="post">
<!--RIGHT-->
<div class="right">
<div class="content">
<p align="center">
到期提醒
</p>
<div class="data_bot1" id="lendinfo" style="margin-top: 10px">
<input type="button" value="全部提醒" onclick="ok()">
<table>
<tr>
<th>
图书条码号
</th>
<th>
书名
</th>
<th>
ISBN
</th>
<th>
读者条码号
</th>
<th>
读者姓名
</th>
<th>
借出时间
</th>
<th>
应还时间
</th>
<th>
读者类别
</th>
</tr>
<logic:present name="lend">
<logic:iterate id="lb" name="lend" type="com.jxyd.vo.LendBean">
<tr>
<td>
<%=lb.getBookCode()%>
</td>
<td>
<%=lb.getBookName()%>
</td>
<td>
<%=lb.getISBN()%>
</td>
<td>
<%=lb.getUserId()%>
</td>
<td>
<%=lb.getUserName()%>
</td>
<td>
<%=lb.getLendDate()%>
</td>
<td>
<%=lb.getShouldReturnDate()%>
</td>
<td>
<%=lb.getType()%>
</td>
</tr>
</logic:iterate>
</logic:present>
<logic:present name="error"><%=request.getAttribute("error")%>
</logic:present>
</table>
</div>
<%
Fenye fenye = (Fenye) request.getAttribute("fenye");
if (fenye != null) {
%>
<%=fenye.getDisplay()%>
<%
}
%>
</div>
</div>
<!--end RIGHT-->
</form>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -