⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 recived.jsp

📁 本程序使用struts+hibernate实现的oa办公系统
💻 JSP
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<html:html>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link type="text/css" rel="stylesheet" href="../../../../css/table.css">
<head><title>公文管理</title>
</head>
<body>
<html:errors/>
<html:form action="/gongwenAction" method="post">
<html:hidden property="operAtt" value="search"/>
<table width="100%" border="1">
  <tr>
    <td>
    	<table>
              <tr>
                <td align="center">公文标题<html:text property="gongwen.title" name="gongwenForm"></html:text></td>
                <td align="center">发送人<html:text property="gongwen.sendname" name="gongwenForm"></html:text></td>
                <td align="center"><html:submit value=" 查  询 "></html:submit></td>
              </tr>
    	</table>
    </td>
  </tr>
</table>
</html:form>
<html:form action="/gongwenAction" method="post">
<html:hidden property="operAtt" value="findall"/>
<p align="center"><font size="+3">已接受到的公文列表</font></p>
<table width="100%" border="1">
  <tr>
    <th align="left">标题</th>
    <th align="left">发送人</th>
    <th align="left">发送时间</th>
    <th align="left">附件</th>
    <th align="left">是否已读</th>
  </tr>
    <logic:present name="gongwenForm" property="list">
      <logic:iterate id="view" name="gongwenForm" property="list">
          <tr>
            <TD><html:link page="/gongwenAction.do?operAtt=title" paramId="universalid" paramName="view" paramProperty="universalid" target="_blank">
                   <bean:write name="view" property="title"/>
                </html:link></TD>
            <TD><bean:write name="view" property="sendname"/></TD>
            <TD><bean:write name="view" property="senddate"/></TD>
            <TD><html:link page="/fujianAction.do?operAtt=findall" paramId="universalid" paramName="view" paramProperty="universalid" target="_blank">
            	<bean:write name="view" property="accessoriesStr"/>
            	</html:link></TD>
            <TD><bean:write name="view" property="isreadStr"/></TD>
          </tr>
      </logic:iterate>
    </logic:present>
</table>
<table>
    <TR>
    	<TD><bean:write name="gongwenForm" property="footer"
			filter="false" /></TD>
	</TR>
</table>
</html:form>
</body>
</html:html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -