affairReqList.jsp
资源名称:(J2EE)oa.rar [点击查看]
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:4k
源码类别:
Jsp/Servlet
开发平台:
Java
- <%@ page language="java" pageEncoding="GBK"%>
- <%@ 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" %>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <link href="<%=request.getContextPath()%>/Css_file/oa.css" rel="stylesheet" type="text/css" />
- <script src="<%=request.getContextPath()%>/Js_file/date.js"></script>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html:html lang="true">
- <head>
- <html:base />
- <title>未处理事务信息查询</title>
- <meta http-equiv="pragma" content="no-cache">
- <meta http-equiv="cache-control" content="no-cache">
- <meta http-equiv="expires" content="0">
- <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
- <meta http-equiv="description" content="This is my page">
- </head>
- <body>
- <html:form action="/affairReq" method="post" styleId="form1">
- <table width="100%" border="1" cellspacing="0" class="myTable">
- <tr>
- <td colspan="6" align="center" class="tableHead"><strong>未处理事务信息查询</strong></td>
- </tr>
- <tr>
- <td align="right" width="107">发起人</td>
- <td colspan="2" width="147" align="center"><input style="width:100%" type="text" name="reqUsername" value=""/></td>
- <td align="right" >紧急程度</td>
- <td colspan="2">
- <select name="rgrade">
- <option value="">请选择</option>
- <option value="0" >一般</option>
- <option value="1" >重要</option>
- <option value="2" >紧急</option>
- </select>
- </td>
- </tr>
- <tr>
- <td colspan="1" align="right" width="107">环节希望完成时间</td>
- <td colspan="5" >从
- <input style="width: 160" type="text" name="starttime" onclick="setday(this);" readonly="readonly" value=""/>
- 到
- <input style="width: 160" type="text" name="endtime" onclick="setday(this);" readonly="readonly" value=""/>
- </td>
- </tr>
- <tr>
- <td height="27" colspan="6">
- <input type="hidden" name="task" value="getReqList"/>
- <input type="submit" name="Submit" value="查询" />
- <input type="button" name="Submit2" value="取消" onclick="window.history.back();"/></td>
- </tr>
- </table>
- </html:form>
- <table width="100%" border="1" cellspacing="0" class="myTable">
- <tr class="tableHead">
- <td height="27" align="center" ><strong>事务标题</strong></td>
- <td align="center" ><strong>事务类型</strong></td>
- <td align="center" ><strong>事务发起者</strong></td>
- <td align="center" ><strong>事务级别</strong></td>
- <td align="center" ><strong>本环节希望完成时间</strong></td>
- <td align="center" ><strong>操作</strong></td>
- </tr>
- <c:if test="${requestScope.reqList!=null}">
- <c:forEach var="req" items="${requestScope.reqList}">
- <c:if test="${req.rtitle==null}">
- <tr>
- <TD colspan="6" align="center"><a style="color: red ;font-size: 14" >没有您的内容</a></TD>
- </tr>
- </c:if>
- <c:if test="${req.rtitle!=null}">
- <tr align="center">
- <td>${req.rtitle}</td>
- <td>${req.tname}</td>
- <td>${req.reqUsername}</td>
- <c:if test="${req.rgrade==0}"><td>一般</td></c:if>
- <c:if test="${req.rgrade==1}"><td>重要</td></c:if>
- <c:if test="${req.rgrade==2}"><td>紧急</td></c:if>
- <td>${req.rlasttime}</td>
- <td><html:link action="/affairReq.do?task=gettoAudit&rqids=${req.rqid}"><strong>事务审核</strong></html:link>
- </td>
- </tr>
- </c:if>
- </c:forEach>
- </c:if>
- <c:if test="${requestScope.reqList==null}">
- <tr>
- <TD colspan="6" align="center"><a style="color: red ;font-size: 14" >没有您的内容</a></TD>
- </tr>
- </c:if>
- </table>
- ${reqpage.pageBar}
- <a href="<%=request.getContextPath()%>/login.do?method=main"><strong><< 返回首页 <strong></a>
- </body>
- </html:html>