No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

admin_log.htm 6.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. {include file="header.htm" /}
  2. <body style="background-color: rgb(255, 255, 255); overflow: auto; cursor: default; -moz-user-select: inherit;">
  3. <div id="append_parent"></div>
  4. <div id="ajaxwaitid"></div>
  5. <div class="page">
  6. <div class="flexigrid">
  7. <div class="mDiv">
  8. <div class="ftitle">
  9. <h3>日志列表</h3>
  10. <h5>(共{$pageObj->totalRows}条记录)</h5>
  11. </div>
  12. <div title="刷新数据" class="pReload"><i class="fa fa-refresh"></i></div>
  13. <form class="navbar-form form-inline" action="{:weapp_url('Systemdoctor/Systemdoctor/admin_log')}" method="get" onsubmit="layer_loading('正在处理');">
  14. {$searchform.hidden|default=''}
  15. <div class="sDiv">
  16. <div class="sDiv2">
  17. <input type="text" size="30" name="keywords" class="qsbox" placeholder="搜索相关数据...">
  18. <input type="submit" class="btn" value="搜索">
  19. </div>
  20. <div class="sDiv2">
  21. <input type="button" class="btn" value="重置" onClick="window.location.href='{:weapp_url('Systemdoctor/Systemdoctor/admin_log')}';">
  22. </div>
  23. </div>
  24. </form>
  25. </div>
  26. <div class="hDiv">
  27. <div class="hDivBox">
  28. <table cellspacing="0" cellpadding="0" style="width: 100%">
  29. <thead>
  30. <tr>
  31. <th class="sign w40" axis="col0">
  32. <div class="tc">选择</div>
  33. </th>
  34. <th abbr="log_id" axis="col5" class="w40">
  35. <div class="tc">ID</div>
  36. </th>
  37. <th abbr="admin_id" axis="col3" class="w250">
  38. <div class="tc">操作人</div>
  39. </th>
  40. <th abbr="log_info" axis="col4">
  41. <div class="">操作信息</div>
  42. </th>
  43. <th abbr="log_ip" axis="col6" class="w100">
  44. <div class="tc">IP</div>
  45. </th>
  46. <th abbr="log_time" axis="col6" class="w160">
  47. <div class="tc">操作时间</div>
  48. </th>
  49. <th axis="col1" class="w120">
  50. <div class="tc">操作</div>
  51. </th>
  52. </tr>
  53. </thead>
  54. </table>
  55. </div>
  56. </div>
  57. <div class="bDiv" style="height: auto;">
  58. <div id="flexigrid" cellpadding="0" cellspacing="0" border="0">
  59. <table style="width: 100%">
  60. <tbody>
  61. {empty name="list"}
  62. <tr>
  63. <td class="no-data" align="center" axis="col0" colspan="50">
  64. <i class="fa fa-exclamation-circle"></i>没有符合条件的记录
  65. </td>
  66. </tr>
  67. {else/}
  68. {volist name="list" id="vo"}
  69. <tr>
  70. <td class="sign">
  71. <div class="w40 tc"><input type="checkbox" name="ids[]" value="{$vo.log_id}"></div>
  72. </td>
  73. <td class="sort">
  74. <div class="w40 tc">
  75. {$vo.log_id}
  76. </div>
  77. </td>
  78. <td class="">
  79. <div class="w250 tc">
  80. {eq name='$vo.admin_id' value='-1'}
  81. 游客
  82. {else /}
  83. {$vo.user_name|default='———'}
  84. {/eq}
  85. </div>
  86. </td>
  87. <td style="width: 100%">
  88. <div style="">
  89. {$vo.log_info|htmlspecialchars_decode=###}
  90. </div>
  91. </td>
  92. <td class="">
  93. <div class="w100 tc">
  94. {$vo.log_ip}
  95. </div>
  96. </td>
  97. <td class="">
  98. <div class="w160 tc">
  99. {$vo.log_time|date='Y-m-d H:i:s',###}
  100. </div>
  101. </td>
  102. <td>
  103. <div class="w120 tc">
  104. <a class="btn red" href="javascript:void(0)" data-url="{:weapp_url('Systemdoctor/Systemdoctor/del_admin_log')}" data-id="{$vo.log_id}" onClick="delfun(this);"><i class="fa fa-trash-o"></i>删除</a>
  105. </div>
  106. </td>
  107. </tr>
  108. {/volist}
  109. {/empty}
  110. </tbody>
  111. </table>
  112. </div>
  113. <div class="iDiv" style="display: none;"></div>
  114. </div>
  115. <div class="tDiv">
  116. <div class="tDiv2">
  117. <div class="fbutton checkboxall">
  118. <input type="checkbox" onclick="javascript:$('input[name*=ids]').prop('checked',this.checked);">
  119. </div>
  120. <div class="fbutton">
  121. <a onclick="batch_del(this, 'ids');" data-url="{:weapp_url('Systemdoctor/Systemdoctor/del_admin_log')}">
  122. <div class="add" title="批量删除">
  123. <span><i class="fa fa-close"></i>批量删除</span>
  124. </div>
  125. </a>
  126. </div>
  127. </div>
  128. <div style="clear:both"></div>
  129. </div>
  130. <!--分页位置-->
  131. {$pageStr}
  132. </div>
  133. </div>
  134. <script>
  135. $(document).ready(function(){
  136. // 表格行点击选中切换
  137. $('#flexigrid > table>tbody >tr').click(function(){
  138. $(this).toggleClass('trSelected');
  139. });
  140. // 点击刷新数据
  141. $('.fa-refresh').click(function(){
  142. location.href = location.href;
  143. });
  144. });
  145. </script>
  146. {include file="footer.htm" /}