jobLog.html 949 B

1234567891011121314151617181920212223
  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:job: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="create_time" data-sort-order="asc">
  15. </table>
  16. </div>
  17. <div th:include="include :: footer"></div>
  18. <script src="/ruoyi/monitor/job/jobLog.js" th:src="@{/ruoyi/monitor/job/jobLog.js}"></script>
  19. <script th:inline="javascript">
  20. var removeFlag = [[${@permissionService.hasPermi('monitor:job:remove')}]];
  21. </script>
  22. </body>
  23. </html>