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

Jsp/Servlet

开发平台:

Java

  1. <%@ page language="java" pageEncoding="GBK"%>
  2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  3. <%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
  4. <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
  5. <%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
  6. <%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>
  7. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  8. <html>
  9. <head>
  10. <link href="<%=request.getContextPath()%>/Css_file/oa.css" rel="stylesheet" type="text/css" />
  11. </head>
  12. <body>
  13. <table width="100%"  border="1" class="myTable">
  14. <tr class="tableHead">
  15. <td colspan="6" align="center">
  16. 公 告 审 核
  17. </td>
  18. </tr>
  19. <tr>
  20. <td align="center">
  21. 公告标题
  22. </td>
  23. <td align="center">
  24. 发布时间
  25. </td>
  26. <td align="center">
  27. 有效时间
  28. </td>
  29. <td align="center">
  30. 发布者
  31. </td>
  32. <td align="center">
  33. 状态
  34. </td>
  35. <td align="center">
  36. 操作
  37. </td>
  38. </tr>
  39. <logic:present name="affiche" scope="request">
  40. <logic:empty name="affiche" scope="request">
  41. <tr>
  42. <td colspan="6">
  43. <font color="red">暂时没有公告信息</font>
  44. </td>
  45. </tr>
  46. </logic:empty>
  47. </logic:present>
  48. <logic:present name="affiche" scope="request">
  49. <logic:notEmpty name="affiche" scope="request">
  50. <logic:iterate id="aff" name="affiche" scope="request">
  51. <tr>
  52. <td>
  53. ${aff.atitle}&nbsp;
  54. </td>
  55. <td align="center">
  56. ${aff.asend_time}&nbsp;
  57. </td>
  58. <td align="center">
  59. ${aff.areal_time}&nbsp;
  60. </td>
  61. <td align="center">
  62. <a href="${pageContext.request.contextPath}/user.do?method=list&id=${aff.funo}">${aff.uname}</a>&nbsp;
  63. </td>
  64. <td align="center">
  65. <c:if test="${aff.astate=='0'}">未审核</c:if>
  66. &nbsp;
  67. </td>
  68. <td align="center">
  69. <c:if test="${aff.astate=='0'}">
  70. <a href="${pageContext.request.contextPath}/affiche.do?method=auditshow&id=${aff.aid}">审核</a>
  71. </c:if>
  72. &nbsp;
  73. </td>
  74. </tr>
  75. </logic:iterate>
  76. </logic:notEmpty>
  77. </logic:present>
  78. </table>
  79. </body>
  80. </html>