e34855b8b3ee1929964d31d3ca4f77735e688293.svn-base 2.05 KB
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<html>
<head>
	<title>预约查询</title>
	<meta name="decorator" content="default"/>
	<meta name="viewport" content="width=device-width,initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
	<style>
		html,body,ul,li,ol,p,h1,h2,h3,h4,img {margin: 0;padding: 0;}
		img {border: none;display: block;}
		ul,ol {list-style: none;}
		a {text-decoration: none;}
		html{font-size:15px;}
		body {font-family: "黑体", Helvetica;overflow-x:hidden;}
		input,select {outline: none;}
		#queryDetailPage{
			max-width:768px;
			padding:0 3%;
		}
		.queryDetailTitle h2{
			line-height:60px;
			font-size:20px;
		}
		
		.table-condensed th,.table-condensed td{
			padding:4px 4px;
		}
		.table-condensed th{
			background:#317eac;
			color:#ffffff;
		}
		.table th,.table td{
			text-align:center;
		}
		.btnCheck{
			border-radius:3px;
			border:1px solid #317eac;
			color:#ffffff;
			background:#317eac;
		}
	</style>
	<script type="text/javascript">
	</script>
</head>
<body>
	<form:form id="searchForm" modelAttribute="regBaseYy" action="${ctx}/reg/wechatInterface/querylist?name=${name}&zjzl=${zjzl}&zjh=${zjh}" method="post" class="">
		<input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>
		<input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>
	</form:form>
	<div id="queryDetailPage">
		<table id="contentTable" class="table table-striped table-bordered table-condensed">
			<thead>
				<tr>
					<th>姓名</th>
					<th>预约时间</th>
					<th>预约号</th>
					<th>操作</th>
				</tr>
			</thead>
			<tbody>
				<c:forEach items="${page.list}" var="regBaseYy">
					<tr>
						<td>
							${regBaseYy.yyrmc}
						</td>
						<td>
							${regBaseYy.dates}
						</td> 
						<td>
							${regBaseYy.yyh}
						</td>
						<td>
							<a href="${ctx}/reg/wechatInterface/form?bj=1&id=${regBaseYy.id}">
								查看
							</a>
						</td>
					</tr>
				</c:forEach>
			</tbody>
		</table>
	</div>
</body>
</html>