📄 personcount.jsp
字号:
<%@ page language="java" import="java.util.*" pageEncoding="GBK"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<link href="../../common/defaultFa/css/all.css" rel="stylesheet"
type="text/css" />
<link href="../../common/defaultFa/css/css.css" rel="stylesheet"
type="text/css" />
<head>
<title>统计个人考勤</title>
<SCRIPT language=javascript src="../../common/js/datetime.js"></SCRIPT>
</head>
<body style="overflow-y: auto">
<form id="form1" name="form1" method="post" action="personCount.html">
<table border="0" align="center" cellpadding="0" cellspacing="0"
class="tb_title">
<tr>
<th align="left" valign="middle">
统计个人考勤
</th>
</tr>
</table>
<p></p>
<table width="100%" border="0" cellpadding="0" cellspacing="0"
class="tb_form">
<!--DWLayoutTable-->
<tr>
<td height="22" align="center" nowrap="nowrap">
统计类型:</td>
<td><select name="appTypeId">
<option value="0"> 所有 </option>
<option value="1"> 外出 </option>
<option value="2"> 请假 </option>
<option value="3"> 出差 </option>
</select>
</td>
</tr>
<tr>
<td height="22" nowrap="nowrap" align="center">考勤时间:
</td>
<td>
<input type="text" name="from" onClick="show_cele_date('','',from)">
至
<input type="text" name="to" onClick="show_cele_date('','',to)">
</td>
</tr>
<tr>
<td align="center" colspan="2">
<input name="btn_count" type="submit" id="btn_count" value=" 统计 ">
<input name="cancel" type="button" id="cancel" value=" 返回 "
onClick="window.location.href='personAttend.jsp'" />
</td>
</tr>
</table>
</form>
<table width="100%" border="0" cellpadding="0" cellspacing="1"
class="tb_data" id="tb_query">
<thead>
<tr>
<td width="23%" align="center">
统计类型
</td>
<td width="23%" align="center">
统计次数
</td>
</tr>
</thead>
<tr>
<td width="23%" align="center">
<c:if test="${appTypeId==0 }">所有</c:if>
<c:if test="${appTypeId==1 }">外出</c:if>
<c:if test="${appTypeId==2 }">请假</c:if>
<c:if test="${appTypeId==3 }">出差</c:if>
</td>
<td width="23%" align="center">
${requestScope.count }
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -