dept.html 1.0 KB

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.w3.org/1999/xhtml">
  3. <meta charset="utf-8">
  4. <head th:include="include :: header"></head>
  5. <body class="gray-bg">
  6. <div class="wrapper wrapper-content">
  7. <div class="btn-group hidden-xs" id="toolbar" role="group">
  8. <div class="form-group">
  9. <button type="button" class="btn btn-outline btn-default" onclick="javascript:add(100)" shiro:hasPermission="system:dept:add">
  10. <i class="fa fa-plus"></i> 新增
  11. </button>
  12. </div>
  13. </div>
  14. <table class="bootstrap-table" data-mobile-responsive="true">
  15. </table>
  16. </div>
  17. <div th:include="include :: footer"></div>
  18. <script src="/ruoyi/system/dept/dept.js" th:src="@{/ruoyi/system/dept/dept.js}"></script>
  19. <script th:inline="javascript">
  20. var addFlag = [[${@permissionService.hasPermi('system:dept:add')}]];
  21. var editFlag = [[${@permissionService.hasPermi('system:dept:edit')}]];
  22. var removeFlag = [[${@permissionService.hasPermi('system:dept:remove')}]];
  23. </script>
  24. </body>
  25. </html>