affairReqList.jsp
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:4k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page language="java" pageEncoding="GBK"%>
  2. <%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
  3. <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
  4. <%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
  5. <%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
  6. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  7. <link href="<%=request.getContextPath()%>/Css_file/oa.css" rel="stylesheet" type="text/css" />
  8. <script src="<%=request.getContextPath()%>/Js_file/date.js"></script>
  9. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  10. <html:html lang="true">
  11.   <head>
  12.     <html:base />
  13.     
  14.     <title>未处理事务信息查询</title>
  15.     
  16.     <meta http-equiv="pragma" content="no-cache">
  17.     <meta http-equiv="cache-control" content="no-cache">
  18.     <meta http-equiv="expires" content="0">    
  19.     <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
  20.     <meta http-equiv="description" content="This is my page">
  21.   </head>
  22.   
  23.   <body>
  24.   <html:form action="/affairReq" method="post" styleId="form1">
  25.   <table width="100%" border="1" cellspacing="0" class="myTable">
  26.   <tr>
  27.     <td colspan="6" align="center" class="tableHead"><strong>未处理事务信息查询</strong></td>
  28.   </tr>
  29.   <tr>
  30.     <td align="right" width="107">发起人</td>
  31.     <td colspan="2" width="147" align="center"><input style="width:100%"  type="text" name="reqUsername" value=""/></td>
  32.     <td align="right" >紧急程度</td>
  33.     <td colspan="2">
  34.     <select name="rgrade">
  35. <option value="">请选择</option>
  36. <option value="0" >一般</option>
  37. <option value="1" >重要</option>
  38. <option value="2" >紧急</option>
  39.     </select>
  40.     </td>
  41.   </tr>
  42.   <tr>
  43.     <td colspan="1" align="right" width="107">环节希望完成时间</td>
  44.     <td colspan="5" >从
  45.     <input style="width: 160"  type="text" name="starttime" onclick="setday(this);" readonly="readonly" value=""/>
  46.     到
  47.     <input style="width: 160"  type="text" name="endtime" onclick="setday(this);" readonly="readonly" value=""/>
  48.     </td>
  49.   </tr>
  50.   <tr>
  51.     <td height="27" colspan="6">
  52. <input type="hidden" name="task" value="getReqList"/>
  53. <input type="submit" name="Submit" value="查询" />
  54.     <input type="button" name="Submit2" value="取消" onclick="window.history.back();"/></td>
  55.   </tr>
  56. </table>
  57. </html:form>
  58. <table width="100%" border="1" cellspacing="0" class="myTable">
  59.   <tr  class="tableHead">
  60.     <td height="27" align="center" ><strong>事务标题</strong></td>
  61.     <td align="center" ><strong>事务类型</strong></td>
  62.     <td align="center" ><strong>事务发起者</strong></td>
  63.     <td align="center" ><strong>事务级别</strong></td>
  64.     <td align="center" ><strong>本环节希望完成时间</strong></td>
  65.     <td align="center" ><strong>操作</strong></td>
  66.   </tr>
  67.    <c:if test="${requestScope.reqList!=null}">
  68.    <c:forEach var="req" items="${requestScope.reqList}">
  69.    <c:if test="${req.rtitle==null}">
  70.    <tr>
  71. <TD colspan="6" align="center"><a style="color: red ;font-size: 14"  >没有您的内容</a></TD>
  72. </tr>
  73.    </c:if>
  74.    <c:if test="${req.rtitle!=null}">
  75.    <tr align="center">
  76.    <td>${req.rtitle}</td>
  77.    <td>${req.tname}</td>
  78.    <td>${req.reqUsername}</td>
  79.    <c:if test="${req.rgrade==0}"><td>一般</td></c:if>
  80.    <c:if test="${req.rgrade==1}"><td>重要</td></c:if>
  81.    <c:if test="${req.rgrade==2}"><td>紧急</td></c:if>
  82.    <td>${req.rlasttime}</td>  
  83.    <td><html:link action="/affairReq.do?task=gettoAudit&rqids=${req.rqid}"><strong>事务审核</strong></html:link>
  84.    </td>
  85.    </tr>
  86.    </c:if>
  87. </c:forEach>
  88.    </c:if> 
  89.    <c:if test="${requestScope.reqList==null}">
  90.    <tr>
  91. <TD colspan="6" align="center"><a style="color: red ;font-size: 14"  >没有您的内容</a></TD>
  92. </tr>
  93. </c:if>
  94. </table>
  95. ${reqpage.pageBar}
  96. <a href="<%=request.getContextPath()%>/login.do?method=main"><strong><< 返回首页 <strong></a>
  97.   </body>
  98. </html:html>