| 123456789101112131415161718192021222324252627 |
- <!DOCTYPE html>
- <html lang="zh_CN" xmlns:th="http://www.thymeleaf.org"
- xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
- <meta charset="utf-8">
- <head th:include="include :: header"></head>
- <body class="gray-bg">
- <div class="wrapper wrapper-content">
- <div class="btn-group hidden-xs" id="tableToolbar" role="group">
- <button type="button" class="btn btn-outline btn-default" th:onclick="'javascript:add()'" shiro:hasPermission="system:post:add">
- <i class="glyphicon glyphicon-plus"></i>
- </button>
- <button type="button" class="btn btn-outline btn-default" th:onclick="'javascript:batchRemove()'" shiro:hasPermission="system:post:batchRemove">
- <i class="glyphicon glyphicon-trash"></i>
- </button>
- </div>
- <table class="bootstrap-table" data-mobile-responsive="true"
- data-sort-name="post_sort" data-sort-order="asc">
- </table>
- </div>
- <div th:include="include :: footer"></div>
- <script src="/ruoyi/system/post/post.js" th:src="@{/ruoyi/system/post/post.js}"></script>
- <script th:inline="javascript">
- var editFlag = [[${@permissionService.hasPermi('system:post:edit')}]];
- var removeFlag = [[${@permissionService.hasPermi('system:post:remove')}]];
- </script>
- </body>
- </html>
|