e34855b8b3ee1929964d31d3ca4f77735e688293.svn-base
2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<%@ 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>