gen.html 821 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html lang="zh_CN" 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="btn-group hidden-xs" id="tableToolbar" role="group">
  8. <button class="btn btn-outline btn-default" onclick="javascript:batchGenCode()" shiro:hasPermission="tool:gen:code">
  9. <i class="fa fa-download"></i> 批量生成
  10. </button>
  11. </div>
  12. <div class="wrapper wrapper-content">
  13. <table class="bootstrap-table" data-mobile-responsive="true"
  14. data-sort-name="create_time" data-sort-order="desc">
  15. </table>
  16. </div>
  17. <div th:include="include :: footer"></div>
  18. <script src="/ruoyi/tool/gen/gen.js" th:src="@{/ruoyi/tool/gen/gen.js}"></script>
  19. </body>
  20. </html>