users-list.hbs
1.8 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
<!-- page content -->
<div class="right_col" role="main">
<div class="">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="x_panel">
<div class="x_title">
<button class="btn btn-primary btn-export-user-list" data-id="{{id}}">导出用户列表</button>
<div class="clearfix"></div>
</div>
<div class="x_content">
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr class="headings">
<th width="8%" class="column-title">ID</th>
<th width="14%" class="column-title">昵称</th>
<th width="12%" class="column-title">手机号</th>
<th width="16%" class="column-title">email</th>
<th width="15%" class="column-title">省份城市</th>
<th width="15%" class="column-title">生日</th>
<th width="8%" class="column-title">性别</th>
<th width="12%" class="column-title">操作</th>
</tr>
</thead>
<tbody class="user-list">
</tbody>
</table>
</div>
<div class="table-pagination user-pagination pull-right"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /page content -->