hotelOrderDetail.jsp
4.5 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<%@ 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>