index.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <include file="public@header" />
  2. </head>
  3. <body>
  4. <div class="wrap">
  5. <ul class="nav nav-tabs">
  6. <li class="active"><a >列表</a></li>
  7. </ul>
  8. <form class="well form-inline margin-top-20" name="form1" method="post" action="">
  9. 时间:
  10. <input class="form-control js-bootstrap-date" name="start_time" id="start_time" value="{:input('request.start_time')}" aria-invalid="false" style="width: 110px;"> -
  11. <input class="form-control js-bootstrap-date" name="end_time" id="end_time" value="{:input('request.end_time')}" aria-invalid="false" style="width: 110px;">
  12. 管理员ID:
  13. <input class="form-control" type="text" name="adminid" style="width: 200px;" value="{:input('request.adminid')}"
  14. placeholder="请输入管理员ID">
  15. <input type="button" class="btn btn-primary" value="搜索" onclick="form1.action='{:url('Adminlog/index')}';form1.submit();"/>
  16. <input type="button" class="btn btn-success" value="导出" onclick="form1.action='{:url('Adminlog/export')}';form1.submit();"/>
  17. </form>
  18. <form method="post" class="js-ajax-form" >
  19. <table class="table table-hover table-bordered">
  20. <thead>
  21. <tr>
  22. <th>ID</th>
  23. <th>管理员ID</th>
  24. <th>管理员</th>
  25. <th>操作</th>
  26. <th>IP</th>
  27. <th>时间</th>
  28. <!-- <th align="center">{:lang('ACTIONS')}</th> -->
  29. </tr>
  30. </thead>
  31. <tbody>
  32. <foreach name="lists" item="vo">
  33. <tr>
  34. <td>{$vo.id}</td>
  35. <td>{$vo['adminid']}</td>
  36. <td>{$vo['admin']}</td>
  37. <td>{$vo['action']}</td>
  38. <td>{:long2ip($vo['ip'])}</td>
  39. <td>{:date('Y-m-d H:i:s',$vo['addtime'])}</td>
  40. <td>
  41. <!-- <a class="btn btn-xs btn-danger js-ajax-delete" href="{:url('Adminlog/del',array('id'=>$vo['id']))}">{:lang('DELETE')}</a> -->
  42. </td>
  43. </tr>
  44. </foreach>
  45. </tbody>
  46. </table>
  47. <div class="pagination">{$page}</div>
  48. </form>
  49. </div>
  50. <script src="__STATIC__/js/admin.js"></script>
  51. </body>
  52. </html>