8b7471af592730324882249ef4d35c17709edd06.svn-base
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<div class="lg-nav">
<label>根据地址类别查询</label>
<div class="btn-group btn-group-sm btn-mgl-5">
<button type="button" class="btn btn-default">默认分类</button>
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="caret"></i>
</button>
<ul class="dropdown-menu">
<li><a href="#">默认分类</a></li>
<li><a href="#">德国客户</a></li>
<li><a href="#">欧洲客户</a></li>
<li><a href="#">美国客户</a></li>
<li><a href="#">非洲客户</a></li>
</ul>
</div>
</div>
<div class="lg-con" scroller-all="160">
<div class="lg-wrap">
<div class="list-wrap">
<table class="table table-hover">
<thead>
<tr>
<th><label allcheck="0" class="checkall"></label></th>
<th>邮件主题</th>
<th>创建时间</th>
<th>投递量</th>
<th>点击</th>
<th>退订</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="listitem in listitems">
<td width="60"><label datafilecheck="0" class="lg-checkbox"></label></td>
<td width="25%">
{{listitem.title}}
</td>
<td>{{listitem.dtime}}</td>
<td>14</td>
<td>12</td>
<td>1</td>
<td width="160">
<button class="btn btn-default btn-sm"><i class="fa fa-download"></i> 导出</button>
<button class="btn btn-danger btn-sm"><i class="fa fa-trash-o"></i> 删除</button>
<!--button class="btn btn-warning btn-sm"><i class="fa fa-envelope-o"></i> 再次发送</button-->
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>