index.html 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <{include file='../public/admin_header.html'}>
  2. <{include file='../public/admin_navi.html'}>
  3. <!-- Right side column. Contains the navbar and content of the page -->
  4. <aside class="right-side">
  5. <!-- Content Header (Page header) -->
  6. <section class="content-header">
  7. <h1>
  8. 打开点击列表管理
  9. <small>Control panel</small>
  10. </h1>
  11. <ol class="breadcrumb">
  12. <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
  13. <li class="active">Blank page</li>
  14. </ol>
  15. </section>
  16. <!-- Main content -->
  17. <section class="content">
  18. <div class="span9">
  19. <{if $info}>
  20. <div class="alert alert-success nodisplay"><{$info}></div>
  21. <{/if}>
  22. <div id='main' class="form-actions">
  23. <form method="post" action="" >
  24. <div style="width:400px;float:left;margin-left:15px;">
  25. <div style="float:left;">搜索时间范围:</div>
  26. <div class="input-group" style="width:300px;margin-bottom:10px;">
  27. <div class="input-group-addon">
  28. <i class="fa fa-calendar"></i>
  29. </div>
  30. <input type="text" name="date_show" class="form-control pull-right" id="reservation" value="<{$date_show}>">
  31. </div><!-- /.input group -->
  32. </div>
  33. <div style="color:red;">
  34. 搜索的时间范围不能超过90天
  35. </div>
  36. <div style="clear:both;margin-left:20px;">
  37. <input type="submit" class="btn btn-info" value="查询" style="clear:both;height: 30px; width: 600px; "/>
  38. </div>
  39. </form>
  40. <br/><br/>
  41. <div>
  42. <p>补充说明:</p>
  43. <p>
  44. 用户打开或点击的邮件,此用户的地址会进入打开点击列表.你可以对此列表进行查询操作.<br/>
  45. <span style="color:red;">默认返回前100条数据,走接口没法实现分页,这个功能最好在<a href="http://www.sendcloud.net" target="_blank">sendcloud</a>的后台查看更合适</span>
  46. </p>
  47. </div>
  48. <table class="table table-mailbox" style="margin-top:15px;">
  49. <tr>
  50. <!--<th style="width:80px;"><input type="checkbox" id="check-all" />&nbsp;&nbsp;全选</th>-->
  51. <th>客户邮箱</th>
  52. <th>打开或点击时间</th>
  53. </tr>
  54. <{foreach from=$list item=item}>
  55. <tr>
  56. <!--<td>-->
  57. <!--<input type="checkbox" name="user_info_array[]" value="<{$item.buyerName}>,<{$item.buyerLoginId}>" />-->
  58. <!--</td>-->
  59. <td><{$item.email}></td>
  60. <td><{$item.currTime}></td>
  61. </tr>
  62. <{/foreach}>
  63. </table>
  64. <{$show}>
  65. <script src="static/AdminLTE/js/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js" type="text/javascript"></script>
  66. <script src="static/AdminLTE/js/plugins/iCheck/icheck.min.js" type="text/javascript"></script>
  67. <link href="static/AdminLTE/css/iCheck/minimal/blue.css" rel="stylesheet" type="text/css" />
  68. <link href="static/AdminLTE/css/daterangepicker/daterangepicker-bs3.css" rel="stylesheet" type="text/css" />
  69. <script src="static/AdminLTE/js/plugins/daterangepicker/daterangepicker.js" type="text/javascript"></script>
  70. <script type="text/javascript">
  71. $(function() {
  72. "use strict";
  73. //iCheck for checkbox and radio inputs
  74. $('input[type="checkbox"]').iCheck({
  75. checkboxClass: 'icheckbox_minimal-blue',
  76. radioClass: 'iradio_minimal-blue'
  77. });
  78. //When unchecking the checkbox
  79. $("#check-all").on('ifUnchecked', function(event) {
  80. //Uncheck all checkboxes
  81. $("input[type='checkbox']", ".table-mailbox").iCheck("uncheck");
  82. });
  83. //When checking the checkbox
  84. $("#check-all").on('ifChecked', function(event) {
  85. //Check all checkboxes
  86. $("input[type='checkbox']", ".table-mailbox").iCheck("check");
  87. });
  88. });
  89. </script>
  90. <!--<script>-->
  91. <!--function group_toSubmit(){-->
  92. <!--var n = $("input:checked").length;-->
  93. <!--//var msg_type = $('#msg_type').val();-->
  94. <!--if (n<=1) {-->
  95. <!--alert("请选择要批量设置用户分组的买家");-->
  96. <!--}else{-->
  97. <!--$('#batch_user_group').submit();-->
  98. <!--}-->
  99. <!--}-->
  100. <!--</script>-->
  101. </div>
  102. </section><!-- /.content -->
  103. </aside><!-- /.right-side -->
  104. </div><!-- ./wrapper -->
  105. <style>
  106. select{height:30px;}
  107. </style>
  108. <script>
  109. $('#treeview8').addClass('active');
  110. $(".click_list_left").addClass('active');
  111. $(function() {
  112. //Date range picker
  113. $('#reservation').daterangepicker();
  114. });
  115. </script>
  116. </body>
  117. </html>