regBaseYyIndex.jsp
1.73 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
<%@ 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;}
#appointmentIndex{
max-width:768px;
padding:0 3%;
}
.appointmentTitle h2{
text-align:center;
font-size:21px;
margin:40% auto 0;
}
.indexAuto{
width:78%;
margin:20% auto;
}
.query{
width:100%;
padding:30px 0;
}
.appointment{
width:100%;
padding:30px 0;
}
.indexAuto .btn{
width:100%;
padding:10px 14px;
font-size:15px;
}
.query .btn{
color:#ffffff;
background:#317eac;
}
.appointment .btn{
border:1px solid #317eac;
color:#317eac;
background:#ffffff;
}
</style>
<script type="text/javascript">
</script>
</head>
<body>
<div id="appointmentIndex">
<div class="indexAuto">
<div class="query" onclick="queryBtn()">
<input class="btn queryBtn" type="button" value="查询"/>
</div>
<div class="appointment" onclick="appointmentBtn()">
<input class="btn appointmentBtn" type="button" value="预约"/>
</div>
</div>
</div>
<script type="text/javascript">
function queryBtn(){
window.open("${ctx}/reg/wechatInterface/query");
}
function appointmentBtn(){
window.open("${ctx}/reg/wechatInterface/form?bj=0");
}
</script>
</body>
</html>