borrow_archive_list_data.jsp
资源名称:NetOffice.rar [点击查看]
上传用户:guhaomin
上传日期:2007-06-10
资源大小:23203k
文件大小:4k
源码类别:
电子政务应用
开发平台:
Java
- <%@ page errorPage="/vnex/ErrorPage.jsp" %>
- <%@ taglib uri="/vnex.tld" prefix="vnex" %>
- <%@ taglib uri="/vnex_archive.tld" prefix="archive" %>
- <%
- String queryStr = " where archive_id in (select archive_id from t_archive where is_borrowed=1) ";
- String pageName = "/mainctrl/archive/borrowArchiveList?a";
- if(session.getAttribute("condition") != null)
- {
- queryStr += (String)session.getAttribute("condition");
- }
- %>
- <script language=JavaScript>
- function deleteThem(form)
- {
- form.action="/mainctrl/archive/deleteBorrowArchives";
- form.submit();
- }
- function SelectAll(form)
- {
- for (var i=0;i<form.elements.length;i++)
- {
- var e = form.elements[i];
- if (e.name != 'C1')
- e.checked = form.C1.checked;
- }
- }
- </script>
- <table width="600" border="0" cellpadding="5" cellspacing="1" class="iframestyle">
- <tr>
- <td colspan="2" height="4" bgcolor="#ffffff"> <a href="/mainctrl/archive/todayArchives">档案管理</a>>><a href="/mainctrl/archive/borrowManager">借阅档案管理</a>>>借阅档案记录
- </td>
- </tr>
- <tr>
- <td colspan="2" height="4" bgcolor="#666666" align="center"><font class="strongw">借阅记录</font></td>
- </tr>
- <tr bgcolor="#FFFFFF">
- <td align="center" colspan="2">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr bgcolor="#CCCCCC">
- <td>
- <table width="100%" border="0">
- <tr>
- <td width="8%"> </td>
- <td width="8%">编号</td>
- <td width="14%">借阅日期</td>
- <td width="46%" align="center">档案标题</td>
- <td width="10%">借阅人</td>
- <td width="14%">归还期限</td>
- </tr>
- <archive:borrowList queryStr="<%=queryStr%>">
- <vnex:items paging="true">
- <tr bgcolor="<vnex:itemsColor />">
- <td align="center" width="8%">
- <input type="checkbox" name="borrowIds" value="<archive:borrowAttribute attribute="borrow_id" />"></td>
- <td width="8%"><a href="/mainctrl/archive/borrowArchiveDetail?borrowId=<archive:borrowAttribute attribute="borrow_id" />"><archive:borrowAttribute attribute="borrow_id" /></a></td>
- <td width="14%"><archive:borrowAttribute attribute="borrow_date" /></td>
- <td width="46%"><archive:borrowAttribute attribute="archive_title" />
- </td>
- <td width="10%"><archive:borrowAttribute attribute="borrower" /></td>
- <td width="14%"><archive:borrowAttribute attribute="return_date" /></td>
- </tr>
- </vnex:items>
- <tr>
- <td colspan="7" bgcolor="#cccccc">
- <input type="checkbox" name="C1" onclick="SelectAll(this.form)"> 全选
- </td>
- </tr>
- <tr>
- <td colspan="7" align="left" bgcolor="#fafafa"><vnex:pagingTag pageName="<%=pageName%>" />
- </td>
- </tr>
- </archive:borrowList>
- </table>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <p>
- <input type="button" value=" 删 除 " name="B252" class="button" onclick="deleteThem(this.form)">
-
- </p>