Files
RuoYi/src/main/resources/templates/system/dept/dept.html

26 lines
1.1 KiB
HTML
Raw Normal View History

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