2018-04-22 16:00:29 +00:00
|
|
|
<!DOCTYPE html>
|
2018-05-27 06:58:13 +00:00
|
|
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
2018-04-22 16:00:29 +00:00
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<head th:include="include :: header"></head>
|
2018-05-24 04:55:00 +00:00
|
|
|
<body class="gray-bg">
|
2018-04-22 16:00:29 +00:00
|
|
|
<div class="wrapper wrapper-content">
|
2018-05-26 06:27:56 +00:00
|
|
|
<div class="btn-group hidden-xs" id="toolbar" role="group">
|
2018-04-22 16:00:29 +00:00
|
|
|
<div class="form-group">
|
2018-05-24 01:56:57 +00:00
|
|
|
<button type="button" class="btn btn-outline btn-default" onclick="javascript:add(0)" shiro:hasPermission="system:menu:add">
|
2018-05-24 04:55:00 +00:00
|
|
|
<i class="fa fa-plus"></i> 新增
|
2018-05-24 01:56:57 +00:00
|
|
|
</button>
|
2018-04-22 16:00:29 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<table class="bootstrap-table" data-mobile-responsive="true">
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
<div th:include="include :: footer"></div>
|
2018-06-15 07:25:59 +00:00
|
|
|
<script th:src="@{/ruoyi/system/menu/menu.js}"></script>
|
2018-04-28 13:39:42 +00:00
|
|
|
<script th:inline="javascript">
|
2018-04-22 16:00:29 +00:00
|
|
|
var addFlag = [[${@permissionService.hasPermi('system:menu:add')}]];
|
|
|
|
|
var editFlag = [[${@permissionService.hasPermi('system:menu:edit')}]];
|
|
|
|
|
var removeFlag = [[${@permissionService.hasPermi('system:menu:remove')}]];
|
|
|
|
|
</script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|