mirror of
https://github.com/201206030/novel-plus.git
synced 2025-06-28 22:16:39 +00:00
66 lines
1.9 KiB
Java
66 lines
1.9 KiB
Java
<!DOCTYPE html>
|
|
<html>
|
|
<meta charset="utf-8">
|
|
<head th:include="include :: header"></head>
|
|
<body class="gray-bg">
|
|
<div class="wrapper wrapper-content ">
|
|
<div class="col-sm-12">
|
|
<div class="ibox">
|
|
<div class="ibox-body">
|
|
<div class="fixed-table-toolbar">
|
|
<div class="columns pull-left">
|
|
<button shiro:hasPermission="common:dict:add" type="button"
|
|
class="btn btn-primary" onclick="add()">
|
|
<i class="fa fa-plus" aria-hidden="true"></i>添加
|
|
</button>
|
|
<button shiro:hasPermission="common:dict:batchRemove"
|
|
type="button" class="btn btn-danger" onclick="batchRemove()">
|
|
<i class="fa fa-trash" aria-hidden="true"></i>删除
|
|
</button>
|
|
</div>
|
|
<div class="columns pull-right">
|
|
<button class="btn btn-success" onclick="reLoad()">查询</button>
|
|
</div>
|
|
<div class="columns pull-right col-md-2">
|
|
<select data-placeholder="选择类别" class="form-control chosen-select"
|
|
tabindex="2" style="width: 100%">
|
|
<option value="">选择类别</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<table id="exampleTable" data-mobile-responsive="true">
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!--shiro控制bootstraptable行内按钮看见性-->
|
|
<div>
|
|
<script type="text/javascript">
|
|
var s_edit_h = 'hidden';
|
|
var s_remove_h = 'hidden';
|
|
var s_resetPwd_h = 'hidden';
|
|
</script>
|
|
</div>
|
|
<div shiro:hasPermission="common:dict:edit">
|
|
<script type="text/javascript">
|
|
s_edit_h = '';
|
|
</script>
|
|
</div>
|
|
<div shiro:hasPermission="common:dict:remove">
|
|
<script type="text/javascript">
|
|
var s_remove_h = '';
|
|
</script>
|
|
</div>
|
|
<div shiro:hasPermission="common:dict:add">
|
|
<script type="text/javascript">
|
|
var s_add_h = '';
|
|
</script>
|
|
</div>
|
|
|
|
</div>
|
|
<div th:include="include :: footer"></div>
|
|
<script type="text/javascript"
|
|
src="/js/appjs/common/dict/dict.js"></script>
|
|
</body>
|
|
</html> |