6271b76830a17a5524f45a7fd9af1e7980f3d730.svn-base
3.5 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
<div class="lg-nav">
<!--next-->
<div class="btn-group btn-group-sm btn-mgl-10">
<button type="button" class="btn btn-default" addfiltermail><i class="fa fa-plus"></i> 添加退订地址
</button>
<button type="button" class="btn btn-default" ng-click="exportfolder()"><i class="fa fa-download"></i> 导出全部退订地址
</button>
<button type="button" class="btn btn-default" ng-click="delunall()"><i class="fa fa-trash-o"></i> 删除</button>
</div>
<div class="input-group input-group-sm lg-input-group lg-w-250 lg-input-group-right btn-mgr-10">
<input type="text" class="form-control" id="unsubscribesearch" placeholder="查询地址...">
<span class="input-group-btn">
<button class="btn btn-default" type="button" unsubscribe-search><i class="fa fa-search"></i></button>
</span>
</div><!-- /input-group -->
</div>
<div class="lg-con">
<div class="lg-wrap" scroller-all="160">
<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>
</tr>
</thead>
<tbody>
<tr ng-repeat="listitem in listitems">
<td width="60"><label datafilecheck="0" cid={{listitem.unsubscribe_id}} class="lg-checkbox unsubcheck"></label></td>
<td>
<div title="{{listitem.unsubscribe_email}}" style="max-width:180px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;"> {{listitem.unsubscribe_email}}</div>
</td>
<td>{{listitem.unsubscribe_date}}</td>
<td><div title="{{listitem.unsubscribe_body}}" style="max-width:480px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;">{{listitem.unsubscribe_body}}</div></td>
<td width="120">
<button class="btn btn-default btn-sm" cid={{listitem.unsubscribe_id}} delfiltermail><i class="fa fa-trash-o"></i> 删除</button>
</td>
</tr>
</tbody>
</table>
</div>
<div style="line-height: 60px; text-align: center" ng-show="listitems.length==0">暂无退订报告</div>
</div>
<!-- START 分页-->
<div class="panel panel-default" ng-show="listitems.length!=0">
<div>
<!-- START row-->
<div class="row">
<div class="col-lg-7 col-lg-offset-5">
<pagination total-items="TotalItems" ng-model="CurrentPage" max-size="maxSize" boundary-links="true" rotate="false" num-pages="numPages" class="pagination-sm" ng-click="pageChanged()"></pagination>
</div>
</div>
<!-- END row-->
</div>
</div>
<!-- END 分页-->
</div>
<div id="dialog-addfiltermail" title="添加退订地址" style="display: none">
<div class="panel-body lg-mail">
<table class="table lg-table-border-bottom table-mtb-0">
<tbody>
<tr>
<td>退订地址</td>
<td><input type="text" id="unsubaddr" class="form-control" placeholder="例: xxx@qq.com"></td>
</tr>
<tr>
<td>退订理由</td>
<td><input type="text" id="unsubwhy" class="form-control" placeholder="无理由"></td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="dialog-unsubscriberesult" title="提示信息" style="display: none">
<div class="panel-body unsubscriberesult">
<p></p>
</div>
</div>