index.html
3.3 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
<!DOCTYPE html>
<html >
<head>
<title>查看房型</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,Chrome=1.0"/>
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no"/>
<meta name="renderer" content="webkit"/>
<meta name="Keywords" content="思埠酒店管理后台"/>
<meta name="discription" content="思埠酒店管理后台"/>
</head>
<body>
<!--look room container start-->
<div class="lookRoomContainer" ng-repeat="hotel in hotels">
<!--top content-->
<div class="T-c" >
<!--左边banner图片-->
<div class="l-img"><img src="{{hotel.thumbUrl}}" alt=""/></div>
<!--右边详情内容-->
<div class="r-content RoomDetail">
<h2 class="title1 text-ellipsis">{{hotel.hotelName}}</h2>
<!--星级-->
<div class="roomStarContainer">
<div class="roomStar" ng-repeat=" v in getStarHtml(hotel.hotelStar)">
<span class="star active" ></span>
</div>
<div class="roomStar" ng-repeat=" v in getStarHtml(5-hotel.hotelStar)">
<span class="star" ></span>
</div>
</div>
<br>
<!--入住信息描述-->
<div class="stayInMsg">
<div class="item text-ellipsis">
<strong class="serverName">入住时间:</strong><span>{{hotel.checkInTime}} - {{hotel.checkOutTime}}</span>
</div>
<div class="item text-ellipsis">
<strong class="serverName"><pre style="display:inline;">设 施:</pre></strong><span>{{hotel.roomEquipment}}</span>
</div>
<div class="item text-ellipsis">
<strong class="serverName">联系电话:</strong><span>{{hotel.hotelTelphone}}</span>
</div>
<div class="item text-ellipsis">
<strong class="serverName">客栈地址:</strong><span>{{hotel.hotelAddress}}</span>
</div>
</div>
<!--客栈介绍-->
<div class="kz_intro_text">
<h3 class="title1">客栈介绍</h3>
<p class="article-text">{{hotel.intro}}</p>
</div>
<!--操作按钮-->
<div class="RMbtn">
<div class="btnInner">
<!-- <a class="btn" href="javascript:void(0);" title="#">
<b class="icon"></b><span>修改详情</span>
</a> -->
<a class="btn _2" href="javascript:void(0);" title="#" ng-click="goRoomAdminList(hotel.hotelId,hotel.hotelName)">
<b class="icon fx"></b><span>查看房型</span>
</a>
</div>
</div>
</div>
</div>
<!--查看订单-->
<div class="KZorderLook">
<div class="order-wrapper">
<div class="order-OP">
<div class="o-i">
<strong class="tips">V币订单</strong>
<a class="a-b" href="#hotelOrderListAdmin/0" title="#">查看订单</a>
</div>
<div class="o-i xj">
<strong class="tips">现金订单</strong>
<a class="a-b" href="#hotelOrderListAdmin/1" title="#">查看订单</a>
</div>
</div>
</div>
</div>
</div>
<!--look room container end-->
</body>
</html>