hotelOrderDetail.jsp 4.5 KB
<%@ page language="java" contentType="text/html; charset=UTF-8"	pageEncoding="UTF-8"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<%
	String path = request.getContextPath();
	String basePath = request.getScheme() + "://"
			+ request.getServerName() + ":" + request.getServerPort()
			+ path + "/";
%>
<!DOCTYPE html>
<html>
<head>
	<base href="<%=basePath%>">
	<title>微信支付</title>
	<meta charset='utf8'>
	<meta name="viewport"
		content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0,user-scalable=no" />
	<meta http-equiv="Cache-Control" content="max-age=0" />
	<meta name="apple-touch-fullscreen" content="yes" />
	<meta name="Description" content="思埠新微商" />
	<meta name="Keywords" content="思埠新微商" />
	<meta name="renderer" content="webkit">
	<meta name="apple-mobile-web-app-capable" content="yes">
	<link rel="stylesheet" type="text/css" href="<%=basePath%>resources/wxPay/css/style.css"/>
	<script type="text/javascript">
		(function(){
			// var width = 
				function setHtmlFontSize(){
					var body = document.documentElement || document.body;
					var width = body.clientWidth;
					width = width>640?640:width;
					document.documentElement.style.fontSize = (width/6.4) + 'px';
				};
				setHtmlFontSize();
				// window.addEventListener('resize',function(){
				// 	console.log("123456");
				// 	setHtmlFontSize();
				// },false);
		})();
	</script>
</head>
<body>
<!--头部 start-->
<header class="sbkz_top_title a_b_b">
	<h1 class="tips text-ellipsis">订单详情</h1>
</header>
<!--头部 end-->
<div style="height:0.68rem;"></div>

<!--内容区域 start-->
<section class="kz_HT_order_wrapper">
	<!--top title-->
	<section class="HT_top_title">
		<h2 class="title text-ellipsis" ng-bind="orderData.status">${orderBean.status }</h2>
	</section> 
	<!--user connection start-->
	<section class="HT_U_connection">
		<!--1-->
		<a class="C-msg" href="javascript:void(0);" title="#">
			<section class="msg">
				<h3 class="m-tips text-ellipsis" ng-bind="orderData.hotelName">${orderBean.hotelName }</h3>
				<div class="m-txt" ng-bind="orderData.hotelAddress">${orderBean.hotelAddress }</div>
			</section>
			<div class="btn-box">
				<b class="icon"></b>
			</div>
		</a>
		<!--2-->
		<section class="C-connection">
			<!-- <a class="P-btn" href="javascript:void(0);" title="#">
				<b class="picon map"></b><stong class="t">查看地图</stong>
			</a> -->
			<a class="P-btn" href="tel:${orderBean.hotelPhone }">
				<b class="picon phone"></b><stong class="t">联系酒店</stong>
			</a>
		</section>
	</section>
	<!--user msg start-->
	<section class="HT_U_r_msg">
		<h1 class="title text-ellipsis"><span>${orderBean.roomName }</span><span>${orderBean.roomNumber }</span>间   共<span>${orderBean.checkinDays }</span></h1>
		<section class="line-wraper">
			<div class="line">
				<strong class="f-b l">入住时间:</strong>
				<div class="f-b"><span>${orderBean.checkInDate }</span><span>${orderBean.checkOutDate }</span></div>
			</div>
			<div class="line">
				<strong class="f-b l">入住人:</strong>
				<div class="f-b">${orderBean.renterInfo }</div>
			</div>
			<div class="line">
				<strong class="f-b l">联系电话:</strong>
				<div class="f-b">${orderBean.renterPhone }</div>
			</div>
		</section>
	</section>
	<!--user msg start-->
	<section class="HT_U_r_msg _2">
		<section class="line-wraper">
			<div class="line">
				<strong class="f-b l">订单总价:</strong>
				<div class="f-b"><span>${orderBean.orderMoney }</span></div>
			</div>
			<div class="line">
				<strong class="f-b l">实付金额:</strong>
				<div class="f-b"><span>${orderBean.orderMoney }</span></div>
			</div>
			<div class="line">
				<strong class="f-b l">支付方式:</strong>
				<div class="f-b">在线支付</div>
			</div>
			<div class="line">
				<strong class="f-b l">订单编号:</strong>
				<div class="f-b">${orderBean.orderCode }</div>
			</div>
			<div class="line">
				<strong class="f-b l">下单时间:</strong>
				<div class="f-b"><fmt:formatDate value="${orderBean.createDate}" pattern="yyyy-MM-dd HH:mm:ss"/></div>
			</div>
		</section>
	</section>
	<!--friendly tips-->
	<section class="f-tips">
		<p>温馨提示:酒店于住店当天13:00办理入住,离店当天13:00办理退房,如您13:00前到达,可能需要等待方能入住,具体以酒店安排为准</p>
	</section>
</section>
<!--内容区域 end-->
</body>
</html>