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

📄 viewapps.jsp

📁 Spring2.0宝典
💻 JSP
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" import="org.yeeku.business.*" errorPage="../error.jsp" %>
<%@include file="../taglibs.jsp"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
   <title>处理申请</title>
   <link href="images/css.css" rel="stylesheet" type="text/css">
</head>
<body>
<logic:present name="result" scope="request">
	<script>
		alert('<bean:write name="result" scope="request"/>');
	</script>
</logic:present>
<%@include file="mgrheader.jsp"%>
<table width="780" align="center" CELLSPACING=0 background="images/bodybg.jpg">
<tr>
<td>
<br>
<table width=80% border=0 align="center" cellpadding=0 cellspacing="1" bgcolor="#CCCCCC">
  <tr bgcolor="#e1e1e1" >
    <td colspan="5" ><div class="mytitle">处理申请</div></td> 
  </tr>
  <tr class="pt9" height="30">
    <td bgcolor="#FFFFFF"><b>员工名</b></td>
    <td bgcolor="#FFFFFF"><b>缺勤类型</b></td>
    <td bgcolor="#FFFFFF"><b>申请类型</b></td>
    <td bgcolor="#FFFFFF"><b>理由</b></td>
    <td bgcolor="#FFFFFF">&nbsp;</td>
  </tr>
<logic:iterate id="item" name="apps" indexId="index">
  <tr class="pt9" height="24">
    <td bgcolor="#FFFFFF"><bean:write name="item" property="emp"/></td>
    <td bgcolor="#FFFFFF"><bean:write name="item" property="unAttend"/></td>
    <td bgcolor="#FFFFFF"><bean:write name="item" property="toAttend"/></td>
    <td bgcolor="#FFFFFF"><bean:write name="item" property="reason"/></td>
    <td bgcolor="#FFFFFF">
	<a href='check.do?result=pass&appid=<bean:write name="item" property="id"/>'>通过</a>&nbsp;&nbsp;
	<a href='check.do?result=deny&appid=<bean:write name="item" property="id"/>'>拒绝</a>
	</td>
  </tr>
</logic:iterate>
</table>
</TD>
</TR>
</TABLE>
<%@include file="../footer.jsp"%>
</body>
</html>

⌨️ 快捷键说明

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