c9432fa92b48ca7ac38df1c66b3d82ee3c0c82a5.svn-base
2.3 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
<div class="lg-con" scroller="120">
<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="timeitem in timeitems">
<td width="60"><label datafilecheck="0" class="lg-checkbox"></label></td>
<td width="30%" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap; max-width: 350px;"><a href="javascript:;" ng-href="#/es/task/timingmailinfo/{{timeitem.send_mail_id}}" title="{{timeitem.subject}}">
{{getsubject(timeitem.subject)}}</a></td>
<td>{{timeitem.send_num}} <span id="{{timeitem.send_mail_id}}" view-time class="lg-pointer">
<i class="fa fa-eye"></i></span>
</td>
<td>{{timeitem.create_time}}</td>
<td>{{timeitem.plans_send_time}}</td>
<td>{{timeitem.sendci}}</td>
<!--<td>-->
<!--<button class="btn btn-default 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 style="line-height: 60px; text-align: center" ng-show="timeitems.length==0">暂无待发邮件</div>
</div>
</div>
</div>
<div id="dialog-timemail" title="查看收件人地址" style="display: none;">
<button type="button" class="btn btn-default btn-mgr-10" exporttiming><i class="fa fa-download"></i>
导出
</button><span id="timingmail" style="display:none;"></span>
<div ng-show="readshow" class="panel-body"><i class="fa fa-spinner fa-pulse"></i> 正在查询中,请稍后……</div>
<table ng-show="!readshow" class="table table-hover">
<thead>
<tr>
<th>邮件地址</th>
</tr>
</thead>
<tbody>
<tr ng-if="readlist.length==0"><td colspan="5">暂无点读地址</td></tr>
<tr ng-repeat="mp in detailList">
<td>{{mp.email}}</td>
</tr>
</tbody>
</table>
</div>