| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
- <!DOCTYPE html>
- <html>
- <head>
- <title>预约记录查询</title>
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <!-- 引入bootstrap -->
- <link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/css/bootstrap.min.css">
- <!-- 引入JQuery bootstrap.js-->
- <script src="${pageContext.request.contextPath}/js/jquery-3.2.1.min.js"></script>
- <script src="${pageContext.request.contextPath}/js/bootstrap.min.js"></script>
- <%--<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">--%>
- </head>
- <body>
- <!-- 顶栏 -->
- <!-- 中间主体 --><jsp:include page="top.jsp"></jsp:include>
- <div class="container" id="content">
- <div class="row">
- <jsp:include page="menu.jsp"></jsp:include>
- <div class="col-md-10">
- <div class="panel panel-default">
- <div class="panel-heading">
- <div class="row">
- <h1 class="col-md-5">预约记录查询</h1>
- <%--<form class="bs-example bs-example-form col-md-5" role="form" style="margin: 20px 0 10px 0;" action="${pageContext.request.contextPath}/admin/queryUser" id="form1" method="post">
- <div class="input-group">
- <input type="text" class="form-control" placeholder="请输入借用人姓名" name="findByName">
- <span class="input-group-addon btn" onclick="document.getElementById('form1').submit" id="sub">搜索</span>
- </div>
- </form>--%>
- </div>
- </div>
- <table class="table table-bordered">
- <thead>
- <tr>
- <th>会议室</th>
- <th>借用日期</th>
- <th>开始时间</th>
- <th>结束时间</th>
- <th>借用人</th>
- <th>联系方式</th>
- <th>状态</th>
- </tr>
- </thead>
- <tbody>
- <c:forEach items="${recordList}" var="item">
- <tr>
- <td>${item.name}</td>
- <td><fmt:formatDate value="${item.date}" dateStyle="medium" pattern="yyyy-MM-dd"/></td>
- <!--pattern="HH:mm:ss"为24小时计时法,pattern="hh:mm:ss"为12小时计时法-->
- <td><fmt:formatDate value="${item.beginTime}" dateStyle="medium" pattern="HH:mm:ss"/></td>
- <td><fmt:formatDate value="${item.endTime}" dateStyle="medium" pattern="HH:mm:ss"/></td>
- <td>${item.user}</td>
- <td>${item.mobile}</td>
- <td>${item.mark}</td>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- <div class="panel-footer">
- <c:if test="${pagingVo != null}">
- <nav style="text-align: center">
- <ul class="pagination">
- <li><a href="${pageContext.request.contextPath}/admin/showRecord?page=${pagingVo.upPageNo}">«上一页</a></li>
- <li class="active"><a href="">${pagingVo.curentPageNo}</a></li>
- <c:if test="${pagingVo.curentPageNo+1 <= pagingVo.totalCount}">
- <li><a href="${pageContext.request.contextPath}/admin/showRecord?page=${pagingVo.curentPageNo+1}">${pagingVo.curentPageNo+1}</a></li>
- </c:if>
- <c:if test="${pagingVo.curentPageNo+2 <= pagingVo.totalCount}">
- <li><a href="${pageContext.request.contextPath}/admin/showRecord?page=${pagingVo.curentPageNo+2}">${pagingVo.curentPageNo+2}</a></li>
- </c:if>
- <c:if test="${pagingVo.curentPageNo+3 <= pagingVo.totalCount}">
- <li><a href="${pageContext.request.contextPath}/admin/showRecord?page=${pagingVo.curentPageNo+3}">${pagingVo.curentPageNo+3}</a></li>
- </c:if>
- <c:if test="${pagingVo.curentPageNo+4 <= pagingVo.totalCount}">
- <li><a href="${pageContext.request.contextPath}/admin/showRecord?page=${pagingVo.curentPageNo+4}">${pagingVo.curentPageNo+4}</a></li>
- </c:if>
- <li><a href="${pageContext.request.contextPath}/admin/showRecord?page=${pagingVo.totalCount}">最后一页»</a></li>
- </ul>
- </nav>
- </c:if>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="container" id="footer">
- <div class="row">
- <div class="col-md-12"></div>
- </div>
- </div>
- </body>
- <script type="text/javascript">
- $("#nav li:nth-child(3)").addClass("active")
- <c:if test="${pagingVO != null}">
- if (${pagingVO.curentPageNo} == ${pagingVO.totalCount}) {
- $(".pagination li:last-child").addClass("disabled")
- };
- if (${pagingVO.curentPageNo} == ${1}) {
- $(".pagination li:nth-child(1)").addClass("disabled")
- };
- </c:if>
- function confirmd() {
- var msg = "您真的确定要删除吗?!";
- if (confirm(msg)==true){
- return true;
- }else{
- return false;
- }
- }
- $("#sub").click(function () {
- $("#form1").submit();
- });
- </script>
- </html>
|