a_auditlist.jsp
资源名称:(J2EE)oa.rar [点击查看]
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:2k
源码类别:
Jsp/Servlet
开发平台:
Java
- <%@ page language="java" pageEncoding="GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <%@ 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"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html>
- <head>
- <link href="<%=request.getContextPath()%>/Css_file/oa.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <table width="100%" border="1" class="myTable">
- <tr class="tableHead">
- <td colspan="6" align="center">
- 公 告 审 核
- </td>
- </tr>
- <tr>
- <td align="center">
- 公告标题
- </td>
- <td align="center">
- 发布时间
- </td>
- <td align="center">
- 有效时间
- </td>
- <td align="center">
- 发布者
- </td>
- <td align="center">
- 状态
- </td>
- <td align="center">
- 操作
- </td>
- </tr>
- <logic:present name="affiche" scope="request">
- <logic:empty name="affiche" scope="request">
- <tr>
- <td colspan="6">
- <font color="red">暂时没有公告信息</font>
- </td>
- </tr>
- </logic:empty>
- </logic:present>
- <logic:present name="affiche" scope="request">
- <logic:notEmpty name="affiche" scope="request">
- <logic:iterate id="aff" name="affiche" scope="request">
- <tr>
- <td>
- ${aff.atitle}
- </td>
- <td align="center">
- ${aff.asend_time}
- </td>
- <td align="center">
- ${aff.areal_time}
- </td>
- <td align="center">
- <a href="${pageContext.request.contextPath}/user.do?method=list&id=${aff.funo}">${aff.uname}</a>
- </td>
- <td align="center">
- <c:if test="${aff.astate=='0'}">未审核</c:if>
-
- </td>
- <td align="center">
- <c:if test="${aff.astate=='0'}">
- <a href="${pageContext.request.contextPath}/affiche.do?method=auditshow&id=${aff.aid}">审核</a>
- </c:if>
-
- </td>
- </tr>
- </logic:iterate>
- </logic:notEmpty>
- </logic:present>
- </table>
- </body>
- </html>