📄 acceptdraftdoc.jsp
字号:
<%@ page contentType="text/html;charset=GB2312" %>
<%@ page import="cn.com.aheadsoft.recordset.AcceptRegisterRecordSet" %>
<%@ page import="cn.com.aheadsoft.util.StringFormat" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link rel="stylesheet" type="text/css" href="/krm/jsp/css/css.css">
<title>我的来文列表界面</title>
<script>
<!--
function openWin(url) {
window.open(url,'','toolbar=no,location=no,menubar=no,resizable=1,scrollbars=yes,left=0,top=0,width=800,height=600');
}
-->
</script>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" >
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" >
<tr >
<td class="trA"> 您的位置:公文管理 >> 收文管理 >> <font class="fontcolor">收文箱</font></td>
</tr>
<tr >
<td height="8"></td>
</tr>
<tr>
<td align="center" >
<table border="0" width="98%" align="center" bordercolor="A1B7DB" class="collapse">
<tr >
<td class="tdA" colspan="8">
我的收文箱</td>
</tr>
<tr>
<td width="9%" class="tdB" align="center" >序号</td>
<td width="33%" class="tdB" align="center" >标题</td>
<td width="15%" class="tdB" align="center" >文号</td>
<td width="21%" class="tdB" align="center" >来文单位</td>
<td width="10%" class="tdB" align="center" nowrap>紧急程度</td>
<td width="12%" class="tdB" align="center" >操作</td>
</tr>
<%
AcceptRegisterRecordSet recordset1 = (AcceptRegisterRecordSet)request.getAttribute("acceptdoc");
if(recordset1 != null && recordset1.size() > 0) {
int num = 1;
while(recordset1.next()) {
%>
<tr <%
if(num%2==0){
%> class="bgcolor"<%}%>>
<td width="9%" class="common" align="center"><%= num %></td>
<td width="33%" class="common" ><a href="javascript:openWin('/krm/servlet/AcceptDocServlet?status=q&module=adv&ADI_ID=<%= recordset1.getADI_ID() %>');"><%= StringFormat.Source2GB(recordset1.getADI_Title()) %></a></td>
<td width="15%" class="common" align="center"><%= StringFormat.Source2GB(recordset1.getAR_SN()) %></td>
<td width="21%" class="common" ><%= StringFormat.Source2GB(recordset1.getADI_SendOrgan()) %></td>
<td width="10%" class="common" align="center"><%= StringFormat.Source2GB(recordset1.getADI_Urgent()) %></td>
<td width="12%" class="common" align="center" nowrap><a href="/krm/servlet/AcceptDocRegServlet?status=q&ADI_ID=<%= recordset1.getADI_ID() %>">办理</a>
<a href="/krm/servlet/AcceptDocServlet?status=q&module=adu&ADI_ID=<%= recordset1.getADI_ID() %>">修改</a></td>
</tr>
<%
num++;
}
}
%>
<tr><td class="tdC" colspan="6"> </td></tr>
</table>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -