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

📄 a_auditlist.jsp

📁 基于J2EE的办公自动化系统。实现流程定义流程办理等。运用了hibernate+struts+spring框架综合运用的系统。
💻 JSP
字号:

<%@ 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}&nbsp;
							</td>
							<td align="center">
								${aff.asend_time}&nbsp;
							</td>
							<td align="center">
								${aff.areal_time}&nbsp;
							</td>
							<td align="center">
								<a href="${pageContext.request.contextPath}/user.do?method=list&id=${aff.funo}">${aff.uname}</a>&nbsp;
							</td>
							<td align="center">
								<c:if test="${aff.astate=='0'}">未审核</c:if>
								&nbsp;
							</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>
								&nbsp;
							</td>
						</tr>
					</logic:iterate>
				</logic:notEmpty>
			</logic:present>
		</table>
	</body>
</html>

⌨️ 快捷键说明

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