dd359d22b7618f82e23d590661490af490901d1d.svn-base 1.73 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;}
		#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>