-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecord.html
180 lines (152 loc) · 8.09 KB
/
record.html
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<div class="app-content" >
<div class="bg-light lter b-b wrapper-md">
<h1 class="m-n font-thin h3">{{$root.translation.RECORD_TITLE}}<!-- <span class="badge">16</span> --></h1>
</div>
<div class="wrapper-md">
<div class="row" ng-init="getGameRecord(1, 10)">
<div class="col-lg-9">
<!-- tab -->
<ul class="nav nav-tabs" style="max-height:40px!important;">
<li class="active" ng-click="getGameRecord(1, num_per_page)"> <a data-toggle="tab" data-target="#a">{{$root.translation.RECORD_GAME_RECORD}}</a></li>
<li ng-click="getRechargeRecord(1, num_per_page)"><a data-toggle="tab" data-target="#b">{{$root.translation.RECORD_RECHARGE}}</a></li>
<li ng-click="getWithdrawalsRecord(1, num_per_page)"><a data-toggle="tab" data-target="#c">{{$root.translation.RECORD_WITHDRAW}}</a></li>
<select name="per_page" ng-model="num_per_page" ng-init="num_per_page = '10'" ng-change="onChangeNum_perPage(1)" style="margin-top: 8px; float: right;">
<option>5</option>
<option>10</option>
<option>15</option>
<option>20</option>
</select>
<label style="margin-top: 8px; margin-right: 10px; float: right;">{{$root.translation.RECORD_ITEMS_PAGE}} : </label>
</ul>
<div class="tab-content" style="margin-top:10px;">
<div class="tab-pane fade in active" id="a">
<div class="padder">
<div class="streamline b-l b-info m-l-lg m-b padder-v" style="margin-left:0px;">
<!-- .a message -->
<div class="m-l-lg" ng-repeat="game_record in gameRecords">
<a class="pull-left thumb-sm avatar">
<span class="text-muted m-l-sm pull-right">
<p>{{ game_record.time.split(' ')[0] }}<br>
{{ game_record.time.split(' ')[1] }}</p>
</span>
</a>
<div class="m-l-xxl panel b-a">
<div class="panel-heading pos-rlt">
<span class="arrow left pull-up"></span>
<!--button class="close" style="line-height: 0;">
<span style="font-size:25px;">×</span>
</button-->
{{game_record.comments}}
</div>
</div>
</div>
<!-- / .a message -->
</div>
</div>
</div>
<div class="tab-pane fade " id="b">
<div class="padder">
<div class="streamline b-l b-info m-l-lg m-b padder-v" style="margin-left:0px;">
<!-- .a message -->
<div class="m-l-lg" ng-repeat="one_charge in chargeRecords">
<a class="pull-left thumb-sm avatar">
<span class="text-muted m-l-sm pull-right">
<p>{{ one_charge.time.split(' ')[0] }}<br>
{{ one_charge.time.split(' ')[1] }}</p>
</span>
</a>
<div class="m-l-xxl panel b-a">
<div class="panel-heading pos-rlt">
<span class="arrow left pull-up"></span>
{{one_charge.comments}}
</div>
</div>
</div>
<!-- / .a message -->
</div>
</div>
</div>
<div class="tab-pane fade" id="c">
<div class="padder">
<div class="streamline b-l b-info m-l-lg m-b padder-v" style="margin-left:0px;">
<!-- .a message -->
<div class="m-l-lg" ng-repeat="one_withdraw in withdrawRecords">
<a class="pull-left thumb-sm avatar">
<span class="text-muted m-l-sm pull-right">
<p>{{ one_withdraw.time.split(' ')[0] }}<br>
{{ one_withdraw.time.split(' ')[1] }}</p>
</span>
</a>
<div class="m-l-xxl panel b-a">
<div class="panel-heading pos-rlt">
<span class="arrow left pull-up"></span>
{{one_withdraw.comments}}
</div>
</div>
</div>
<!-- / .a message -->
</div>
</div>
</div>
<!-- ---------------page -->
<div class="row">
<div class="col-sm-3 hidden-xs">
</div>
<div class="col-sm-6 text-center">
<nav>
<ul uib-pagination total-items="bigTotalItems" ng-model="bigCurrentPage" max-size="maxSize" class="pagination-sm" boundary-link-numbers="true" ng-change="pageChanged()"></ul>
</nav>
</div>
<div class="col-sm-3 text-right text-center-xs">
</div>
</div>
<!-- -------------page -->
</div>
<!-- / tab -->
</div>
<!-- -----------------------right start--------------------------- -->
<div class="col-lg-3" ng-show="$root.is_logged">
<div class="wrapper">
<div class="panel b-a" ng-show="$root.showNotices.length != 0">
<h4 class="font-thin padder"><a href class="text-info"><strong>Notice</strong></a></h4>
<ul class="list-group">
<li class="list-group-item" ng-repeat="one_notice in showNotices">
<p ng-click="showNoticeDetails()"><em><a style="text-decoration: underline;">{{ one_notice.show_m }}</a></em></p>
<small class="block text-muted"><i class="fa fa-fw fa-clock-o"></i> {{ one_notice.time }}</small>
</li>
</ul>
</div>
<div class="panel b-a">
<h4 class="font-thin padder"><a href class="text-info"><strong>News</strong></a></h4>
<ul class="list-group">
<li class="list-group-item" ng-repeat="one_news in showNews">
<p ng-click="showNewsDetails(one_news)"><em><a style="text-decoration: underline;">{{ one_news.show_m }}</a></em></p>
<small class="block text-muted"><i class="fa fa-fw fa-clock-o"></i>{{ one_news.time }}</small>
</li>
</ul>
</div>
</div>
</div>
<!-- ---------------------------right end---------------------------------------- -->
</div>
</div>
<div style="background: #271e1f; width: 100%; margin-top: 50px;">
<div style="display: table; margin: 0 auto; color: #c0bebe; padding-top: 28px; padding-right: 30px; padding-left: 30px;">
<p>{{$root.translation.ABOUT_US_TITLE}}<br/>
{{$root.translation.ABOUT_US_CONTENT1}}<br/>
{{$root.translation.ABOUT_US_CONTENT2}}<br/>
{{$root.translation.ABOUT_US_CONTENT3}}<br/>
{{$root.translation.ABOUT_US_CONTENT4}}<br/>
{{$root.translation.ABOUT_US_CONTENT5}}<br/>
</p>
</div>
<center>
<img src="img/footerLogo.png" style="width: 100%;" />
</center>
<div style="display: table; margin: 0 auto; color: #c0bebe; text-align: center;">
<p>{{$root.translation.ABOUT_US_CONTENT6}}<br/>
{{$root.translation.ABOUT_US_CONTENT7}}<br/>
</p>
</div>
</div>
</div>