list.hbs
2.44 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
<!-- 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">
<a href="/admin/coupon/option" class="btn btn-primary">创建券</a>
<div class="btn-group" style="vertical-align: top">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span id="dropdown-toggle-txt">全部 </span> <span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li data-status="1"><a href="#">已上架</a></li>
<li data-status="0"><a href="#">已下架</a></li>
<li><a href="#">全部</a></li>
</ul>
</div>
</div>
<div class="x_content">
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr class="headings">
<th class="column-title">ID</th>
<th class="column-title">券名称</th>
<th class="column-title">商家名称</th>
<th class="column-title">券图标</th>
<th class="column-title">上下架状态</th>
<th class="column-title">券类型</th>
<th class="column-title">排序权重</th>
<th class="column-title">创建时间</th>
<th class="column-title">操作</th>
</tr>
</thead>
<tbody class="coupon-list">
</tbody>
</table>
</div>
<div class="table-pagination coupon-pagination pull-right"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /page content -->