index.html 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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. 搜索的时间不能为空
  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. 用户举报的垃圾邮件, 此用户的地址会进入垃圾举报列表.
  45. <br/>
  46. <span style="color:red;">默认返回前100条数据,若想查看更多请去<a href="http://www.sendcloud.net" target="_blank">sendcloud</a>的后台查看</span><br/>
  47. 在此列表中的邮件地址, 都不会再被发送邮件.<br/>
  48. </p>
  49. </div>
  50. <table class="table table-mailbox" style="margin-top:15px;">
  51. <tr>
  52. <!--<th style="width:80px;"><input type="checkbox" id="check-all" />&nbsp;&nbsp;全选</th>-->
  53. <th>客户邮箱</th>
  54. <th>举报说明</th>
  55. </tr>
  56. <{foreach from=$list item=item}>
  57. <tr>
  58. <!--<td>-->
  59. <!--<input type="checkbox" name="user_info_array[]" value="<{$item.buyerName}>,<{$item.buyerLoginId}>" />-->
  60. <!--</td>-->
  61. <td><{$item.email}></td>
  62. <td><{$item.reason}></td>
  63. </tr>
  64. <{/foreach}>
  65. </table>
  66. <{$show}>
  67. <script src="static/AdminLTE/js/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js" type="text/javascript"></script>
  68. <script src="static/AdminLTE/js/plugins/iCheck/icheck.min.js" type="text/javascript"></script>
  69. <link href="static/AdminLTE/css/iCheck/minimal/blue.css" rel="stylesheet" type="text/css" />
  70. <link href="static/AdminLTE/css/daterangepicker/daterangepicker-bs3.css" rel="stylesheet" type="text/css" />
  71. <script src="static/AdminLTE/js/plugins/daterangepicker/daterangepicker.js" type="text/javascript"></script>
  72. <script type="text/javascript">
  73. $(function() {
  74. "use strict";
  75. //iCheck for checkbox and radio inputs
  76. $('input[type="checkbox"]').iCheck({
  77. checkboxClass: 'icheckbox_minimal-blue',
  78. radioClass: 'iradio_minimal-blue'
  79. });
  80. //When unchecking the checkbox
  81. $("#check-all").on('ifUnchecked', function(event) {
  82. //Uncheck all checkboxes
  83. $("input[type='checkbox']", ".table-mailbox").iCheck("uncheck");
  84. });
  85. //When checking the checkbox
  86. $("#check-all").on('ifChecked', function(event) {
  87. //Check all checkboxes
  88. $("input[type='checkbox']", ".table-mailbox").iCheck("check");
  89. });
  90. });
  91. </script>
  92. <!--<script>-->
  93. <!--function group_toSubmit(){-->
  94. <!--var n = $("input:checked").length;-->
  95. <!--//var msg_type = $('#msg_type').val();-->
  96. <!--if (n<=1) {-->
  97. <!--alert("请选择要批量设置用户分组的买家");-->
  98. <!--}else{-->
  99. <!--$('#batch_user_group').submit();-->
  100. <!--}-->
  101. <!--}-->
  102. <!--</script>-->
  103. </div>
  104. </section><!-- /.content -->
  105. </aside><!-- /.right-side -->
  106. </div><!-- ./wrapper -->
  107. <style>
  108. select{height:30px;}
  109. </style>
  110. <script>
  111. $('#treeview7').addClass('active');
  112. $(".garbage_left").addClass('active');
  113. $(function() {
  114. //Date range picker
  115. $('#reservation').daterangepicker();
  116. });
  117. </script>
  118. </body>
  119. </html>