operlog.html 995 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="zh" xmlns:th="http://www.thymeleaf.org"
  3. xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
  4. <meta charset="utf-8">
  5. <head th:include="include :: header"></head>
  6. <body class="gray-bg">
  7. <div class="wrapper wrapper-content">
  8. <div class="btn-group hidden-xs" id="toolbar" role="group">
  9. <button class="btn btn-outline btn-default" onclick="javascript:batchRemove()" shiro:hasPermission="monitor:operlog:batchRemove">
  10. <i class="fa fa-trash-o"></i> 删除
  11. </button>
  12. </div>
  13. <table class="bootstrap-table" data-mobile-responsive="true"
  14. data-sort-name="oper_time" data-sort-order="desc">
  15. </table>
  16. </div>
  17. <div th:include="include :: footer"></div>
  18. <script src="/ruoyi/monitor/operlog/operlog.js" th:src="@{/ruoyi/monitor/operlog/operlog.js}"></script>
  19. <script th:inline="javascript">
  20. var detailFlag = [[${@permissionService.hasPermi('monitor:operlog:detail')}]];
  21. </script>
  22. </body>
  23. </html>