roomStock.html
10.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<style>
</style>
<div class="pageheader notab">
<h1 class="pagetitle">{{roomName}}-房型库存明细</h1>
</div>
<!--pageheader-->
<div id="contentwrapper" class="contentwrapper">
<div id="basicform" class="subcontent">
<table class="fc-border-separate" style="width:100%; padding-left: 20px;padding-right: 20px'" cellspacing="0" >
<thead>
<tr class="fc-first fc-last">
<th class="fc-sun fc-widget-header fc-first" style="width: 15%;">星期天</th>
<th class="fc-mon fc-widget-header" style="width: 15%;">星期一</th>
<th class="fc-tue fc-widget-header" style="width: 15%;">星期二</th>
<th class="fc-wed fc-widget-header" style="width: 15%;">星期三</th>
<th class="fc-thu fc-widget-header" style="width: 15%;">星期四</th>
<th class="fc-fri fc-widget-header" style="width: 15%;">星期五</th>
<th class="fc-sat fc-widget-header fc-last"style="width: 15%;">星期六</th>
</tr>
</thead>
<tbody>
<tr class="fc-week0 fc-last" ng-repeat="lineStockMap in stockList">
<td class="fc-sun fc-widget-content fc-day0 fc-first fc-other-month">
<div style="min-height: 149px;" align="left" ng-if="lineStockMap.0!=null">
<div class="fc-day-number" align="center" style="font-style:italic;font-size: 14px;color: green;font-family:monospace;font-weight: bold;">{{lineStockMap.0.dayTime}}{{lineStockMap.0.weekDay}}</div>
<div class="fc-day-number"><strong>房价:</strong><font style="font-style: italic;font-family: cursive;color: navy;">¥{{lineStockMap.0.price}}</font></div>
<div class="fc-day-number"><strong>积分兑分:</strong><font style="font-style: italic;font-family: cursive;color: navy;">{{lineStockMap.0.integral}}</font></div>
<div class="fc-day-number"><strong>剩余房间数:</strong><font style="font-style: italic;font-family: cursive;color: navy;">{{lineStockMap.0.number}}</font></div>
<div class="fc-day-number"><strong>是否可住:</strong>
<font style="font-style: italic;font-family: cursive;color: red;" ng-if="lineStockMap.0.isOpen==0">不可住</font>
<font style="font-style: italic;font-family: cursive;color: navy;" ng-if="lineStockMap.0.isOpen==1">可住</font>
</div>
<div class="fc-day-number" align="center"><a href="javascript:void(0)" style="color: red;font-weight: bold;font-stretch: narrower;" ng-click="updateDialog(lineStockMap.0)">编辑</a></div>
</div>
</td>
<td class="fc-mon fc-widget-content fc-day1">
<div style="min-height: 149px;" align="left" ng-if="lineStockMap.1!=null">
<div class="fc-day-number" align="center" style="font-style:italic;font-size: 14px;color: green;font-family:monospace;font-weight: bold;">{{lineStockMap.1.dayTime}}{{lineStockMap.1.weekDay}}</div>
<div class="fc-day-number"><strong>房价:</strong><font style="font-style: italic;font-family: cursive;color: navy;">¥{{lineStockMap.1.price}}</font></div>
<div class="fc-day-number"><strong>积分兑分:</strong><font style="font-style: italic;font-family: cursive;color: navy;">{{lineStockMap.1.integral}}</font></div>
<div class="fc-day-number"><strong>剩余房间数:</strong><font style="font-style: italic;font-family: cursive;color: navy;">{{lineStockMap.1.number}}</font></div>
<div class="fc-day-number"><strong>是否可住:</strong>
<font style="font-style: italic;font-family: cursive;color: red;" ng-if="lineStockMap.1.isOpen==0">不可住</font>
<font style="font-style: italic;font-family: cursive;color: navy;" ng-if="lineStockMap.1.isOpen==1">可住</font>
</div>
<div class="fc-day-number" align="center"><a href="javascript:void(0)" style="color: red;font-weight: bold;font-stretch: narrower;" ng-click="updateDialog(lineStockMap.1)">编辑</a></div>
</div>
</td>
<td class="fc-tue fc-widget-content fc-day2">
<div style="min-height: 149px;" align="left" ng-if="lineStockMap.2!=null">
<div class="fc-day-number" align="center" style="font-style:italic;font-size: 14px;color: green;font-family:monospace;font-weight: bold;">{{lineStockMap.2.dayTime}}{{lineStockMap.2.weekDay}}</div>
<div class="fc-day-number"><strong>房价:</strong><font style="font-style: italic;font-family: cursive;color: navy;">¥{{lineStockMap.2.price}}</font></div>
<div class="fc-day-number"><strong>积分兑分:</strong><font style="font-style: italic;font-family: cursive;color: navy;">{{lineStockMap.2.integral}}</font></div>
<div class="fc-day-number"><strong>剩余房间数:</strong><font style="font-style: italic;font-family: cursive;color: navy;">{{lineStockMap.2.number}}</font></div>
<div class="fc-day-number"><strong>是否可住:</strong>
<font style="font-style: italic;font-family: cursive;color: red;" ng-if="lineStockMap.2.isOpen==0">不可住</font>
<font style="font-style: italic;font-family: cursive;color: navy;" ng-if="lineStockMap.2.isOpen==1">可住</font>
</div>
<div class="fc-day-number" align="center"><a href="javascript:void(0)" style="color: red;font-weight: bold;font-stretch: narrower;" ng-click="updateDialog(lineStockMap.2)">编辑</a></div>
</div>
</td>
<td class="fc-wed fc-widget-content fc-day3">
<div style="min-height: 149px;" align="left" ng-if="lineStockMap.3!=null">
<div class="fc-day-number" align="center" style="font-style:italic;font-size: 14px;color: green;font-family:monospace;font-weight: bold;">{{lineStockMap.3.dayTime}}{{lineStockMap.3.weekDay}}</div>
<div class="fc-day-number"><strong>房价:</strong><font style="font-style: italic;font-family: cursive;color: navy;">¥{{lineStockMap.3.price}}</font></div>
<div class="fc-day-number"><strong>积分兑分:</strong><font style="font-style: italic;font-family: cursive;color: navy;">{{lineStockMap.3.integral}}</font></div>
<div class="fc-day-number"><strong>剩余房间数:</strong><font style="font-style: italic;font-family: cursive;color: navy;">{{lineStockMap.3.number}}</font></div>
<div class="fc-day-number"><strong>是否可住:</strong>
<font style="font-style: italic;font-family: cursive;color: red;" ng-if="lineStockMap.3.isOpen==0">不可住</font>
<font style="font-style: italic;font-family: cursive;color: navy;" ng-if="lineStockMap.3.isOpen==1">可住</font>
</div>
<div class="fc-day-number" align="center"><a href="javascript:void(0)" style="color: red;font-weight: bold;font-stretch: narrower;" ng-click="updateDialog(lineStockMap.3)">编辑</a></div>
</div>
</td>
<td class="fc-thu fc-widget-content fc-day4">
<div style="min-height: 149px;" align="left" ng-if="lineStockMap.4!=null">
<div class="fc-day-number" align="center" style="font-style:italic;font-size: 14px;color: green;font-family:monospace;font-weight: bold;">{{lineStockMap.4.dayTime}}{{lineStockMap.4.weekDay}}</div>
<div class="fc-day-number"><strong>房价:</strong><font style="font-style: italic;font-family: cursive;color: navy;">¥{{lineStockMap.4.price}}</font></div>
<div class="fc-day-number"><strong>积分兑分:</strong><font style="font-style: italic;font-family: cursive;color: navy;">{{lineStockMap.4.integral}}</font></div>
<div class="fc-day-number"><strong>剩余房间数:</strong><font style="font-style: italic;font-family: cursive;color: navy;">{{lineStockMap.4.number}}</font></div>
<div class="fc-day-number"><strong>是否可住:</strong>
<font style="font-style: italic;font-family: cursive;color: red;" ng-if="lineStockMap.4.isOpen==0">不可住</font>
<font style="font-style: italic;font-family: cursive;color: navy;" ng-if="lineStockMap.4.isOpen==1">可住</font>
</div>
<div class="fc-day-number" align="center"><a href="javascript:void(0)" style="color: red;font-weight: bold;font-stretch: narrower;" ng-click="updateDialog(lineStockMap.4)">编辑</a></div>
</div>
</td>
<td class="fc-fri fc-widget-content fc-day5">
<div style="min-height: 149px;" align="left" ng-if="lineStockMap.5!=null">
<div class="fc-day-number" align="center" style="font-style:italic;font-size: 14px;color: green;font-family:monospace;font-weight: bold;">{{lineStockMap.5.dayTime}}{{lineStockMap.5.weekDay}}</div>
<div class="fc-day-number"><strong>房价:</strong><font style="font-style: italic;font-family: cursive;color: navy;">¥{{lineStockMap.5.price}}</font></div>
<div class="fc-day-number"><strong>积分兑分:</strong><font style="font-style: italic;font-family: cursive;color: navy;">{{lineStockMap.5.integral}}</font></div>
<div class="fc-day-number"><strong>剩余房间数:</strong><font style="font-style: italic;font-family: cursive;color: navy;">{{lineStockMap.5.number}}</font></div>
<div class="fc-day-number"><strong>是否可住:</strong>
<font style="font-style: italic;font-family: cursive;color: red;" ng-if="lineStockMap.5.isOpen==0">不可住</font>
<font style="font-style: italic;font-family: cursive;color: navy;" ng-if="lineStockMap.5.isOpen==1">可住</font>
</div>
<div class="fc-day-number" align="center"><a href="" style="color: red;font-weight: bold;font-stretch: narrower;" ng-click="updateDialog(lineStockMap.5)">编辑</a></div>
</div>
</td>
<td class="fc-sat fc-widget-content fc-day6 fc-last">
<div style="min-height: 149px;" align="left" ng-if="lineStockMap.6!=null">
<div class="fc-day-number" align="center" style="font-style:italic;font-size: 14px;color: green;font-family:monospace;font-weight: bold;">{{lineStockMap.6.dayTime}}{{lineStockMap.6.weekDay}}</div>
<div class="fc-day-number"><strong>房价:</strong><font style="font-style: italic;font-family: cursive;color: navy;">¥{{lineStockMap.6.price}}</font></div>
<div class="fc-day-number"><strong>积分兑分:</strong><font style="font-style: italic;font-family: cursive;color: navy;">{{lineStockMap.6.integral}}</font></div>
<div class="fc-day-number"><strong>剩余房间数:</strong><font style="font-style: italic;font-family: cursive;color: navy;">{{lineStockMap.6.number}}</font></div>
<div class="fc-day-number"><strong>是否可住:</strong>
<font style="font-style: italic;font-family: cursive;color: red;" ng-if="lineStockMap.6.isOpen==0">不可住</font>
<font style="font-style: italic;font-family: cursive;color: navy;" ng-if="lineStockMap.6.isOpen==1">可住</font></div>
<div class="fc-day-number" align="center"><a href="javaScript:void(0)" style="color: red;font-weight: bold;font-stretch: narrower;" ng-click="updateDialog(lineStockMap.6)">编辑</a></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>