| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 | 
							- <{include file='../public/admin_header.html'}>
 
- <{include file='../public/admin_navi.html'}>
 
- <!-- Right side column. Contains the navbar and content of the page -->
 
- <aside class="right-side">
 
- 	<!-- Content Header (Page header) -->
 
- 	<section class="content-header">
 
- 		<h1>
 
- 			无效邮件统计
 
- 			<small>Control panel</small>
 
- 		</h1>
 
- 		<ol class="breadcrumb">
 
- 			<li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
 
- 			<li class="active">Blank page</li>
 
- 		</ol>
 
- 	</section>
 
- 	<!-- Main content -->
 
- 	<section class="content">
 
- 		<div class="span9">
 
- 			<{if $info}>
 
- 			<div   class="alert alert-success  nodisplay"><{$info}></div>
 
- 			<{/if}>
 
- 			<div id='main' class="form-actions">
 
- 				<form method="post" action="" >
 
- 					<div style="width:400px;float:left;margin-left:15px;">
 
- 						<div style="float:left;">搜索时间范围:</div>
 
- 						<div class="input-group" style="width:300px;margin-bottom:10px;">
 
- 							<div class="input-group-addon">
 
- 								<i class="fa fa-calendar"></i>
 
- 							</div>
 
- 							<input type="text" name="date_show" class="form-control pull-right" id="reservation" value="<{$date_show}>">
 
- 						</div><!-- /.input group -->
 
- 					</div>
 
- 					<div style="color:red;">
 
- 						搜索的时间范围不能超过90天
 
- 					</div>
 
- 					<div style="clear:both;margin-left:20px;">
 
- 						<input type="submit" class="btn btn-info" value="查询" style="clear:both;height: 30px; width: 600px; "/>
 
- 					</div>
 
- 				</form>
 
- 				<br/><br/>
 
- 					<table class="table table-mailbox" style="margin-top:15px;">
 
- 						<tr>
 
- 							<!--<th style="width:80px;"><input type="checkbox"  id="check-all" />  全选</th>-->
 
- 							<th>发送日期</th>
 
- 							<th>标签名称</th>
 
- 							<th>收信域名</th>
 
- 							<th>在sendcloud黑名单的个数</th>
 
- 							<th>在取消订阅列表的个数</th>
 
- 							<th>esp服务器不可达的个数</th>
 
- 							<th>收件人格式错误的个数</th>
 
- 							<th>ip或者域名被拒个数</th>
 
- 							<th>收件人不存在个数</th>
 
- 							<th>垃圾邮件个数</th>
 
- 							<th>发信人或者收件人被拒个数</th>
 
- 							<th>其他</th>
 
- 						</tr>
 
- 						<{foreach from=$list item=item}>
 
- 						<tr>
 
- 							<!--<td>-->
 
- 								<!--<input type="checkbox"   name="user_info_array[]" value="<{$item.buyerName}>,<{$item.buyerLoginId}>" />-->
 
- 							<!--</td>-->
 
- 							<td><{$item.sendDate}></td>
 
- 							<td><{$item.labelName}></td>
 
- 							<td><{$item.domain}></td>
 
- 							<td><{$item.sendcloudBlacklist}></td>
 
- 							<td><{$item.ubsubscribe}></td>
 
- 							<td><{$item.espUnvaliable}></td>
 
- 							<td><{$item.recipientAddressError}></td>
 
- 							<td><{$item.ipOrDomainRejected}></td>
 
- 							<td><{$item.recipientNotFound}></td>
 
- 							<td><{$item.spamEmails}></td>
 
- 							<td><{$item.senderOrRecipientRejected}></td>
 
- 							<td><{$item.others}></td>
 
- 						</tr>
 
- 						<{/foreach}>
 
- 					</table>
 
- 				<{$show}>
 
- 			<script src="static/AdminLTE/js/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js" type="text/javascript"></script>
 
- 			<script src="static/AdminLTE/js/plugins/iCheck/icheck.min.js" type="text/javascript"></script>
 
- 			<link href="static/AdminLTE/css/iCheck/minimal/blue.css" rel="stylesheet" type="text/css" />
 
- 			<link href="static/AdminLTE/css/daterangepicker/daterangepicker-bs3.css" rel="stylesheet" type="text/css" />
 
- 			<script src="static/AdminLTE/js/plugins/daterangepicker/daterangepicker.js" type="text/javascript"></script>
 
- 			<script type="text/javascript">
 
- 				$(function() {
 
- 					"use strict";
 
- 					//iCheck for checkbox and radio inputs
 
- 					$('input[type="checkbox"]').iCheck({
 
- 						checkboxClass: 'icheckbox_minimal-blue',
 
- 						radioClass: 'iradio_minimal-blue'
 
- 					});
 
- 					//When unchecking the checkbox
 
- 					$("#check-all").on('ifUnchecked', function(event) {
 
- 						//Uncheck all checkboxes
 
- 						$("input[type='checkbox']", ".table-mailbox").iCheck("uncheck");
 
- 					});
 
- 					//When checking the checkbox
 
- 					$("#check-all").on('ifChecked', function(event) {
 
- 						//Check all checkboxes
 
- 						$("input[type='checkbox']", ".table-mailbox").iCheck("check");
 
- 					});
 
- 				});
 
- 			</script>
 
- 			<!--<script>-->
 
- 				<!--function group_toSubmit(){-->
 
- 					<!--var n = $("input:checked").length;-->
 
- 					<!--//var msg_type = $('#msg_type').val();-->
 
- 					<!--if (n<=1) {-->
 
- 						<!--alert("请选择要批量设置用户分组的买家");-->
 
- 					<!--}else{-->
 
- 						<!--$('#batch_user_group').submit();-->
 
- 					<!--}-->
 
- 				<!--}-->
 
- 			<!--</script>-->
 
- 		</div>
 
- 	</section><!-- /.content -->
 
- </aside><!-- /.right-side -->
 
- </div><!-- ./wrapper -->
 
- <style>
 
- 	select{height:30px;}
 
- </style>
 
- <script>
 
- 	$('#treeview6').addClass('active');
 
- 	$(".invalid_email_left").addClass('active');
 
- 	$(function() {
 
- 		//Date range picker
 
- 		$('#reservation').daterangepicker();
 
- 	});
 
- </script>
 
- </body>
 
- </html>
 
 
  |