74 lines
3.6 KiB
HTML
74 lines
3.6 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<title>字典管理</title>
|
||
|
|
<link rel="stylesheet" type="text/css" media="screen" href="../../../css/bootstrap.min.css">
|
||
|
|
<link rel="stylesheet" href="../../../css/treetable/jquery.treetable.css" />
|
||
|
|
<link rel="stylesheet" href="../../../css/treetable/jquery.treetable.theme.default.css" />
|
||
|
|
<link rel="stylesheet" type="text/css" media="screen" href="../../../layui/css/layui.css">
|
||
|
|
<style type="text/css">
|
||
|
|
.table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th{
|
||
|
|
text-align: center;
|
||
|
|
vertical-align: middle;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div>
|
||
|
|
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
|
||
|
|
<header style="height: 100%">
|
||
|
|
<div align="left">
|
||
|
|
<table style="width: 100%">
|
||
|
|
<tr>
|
||
|
|
<td>
|
||
|
|
<form class="form-inline layui-form" onsubmit="return false">
|
||
|
|
<div class="form-group" style="width: 100%;">
|
||
|
|
<div class="layui-inline" >
|
||
|
|
<div class="layui-input-inline">
|
||
|
|
字典名称:
|
||
|
|
<input id="keyWord" type="text" class="form-control" placeholder="请输入字典名称">
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<button id="searchBt" class="layui-btn layui-btn-sm" permission="sys:dictionary:query"><i class="layui-icon"></i>搜索</button>
|
||
|
|
<button class="layui-btn layui-btn-sm" onclick="insertDictionary()" permission="sys:dictionary:query">
|
||
|
|
<i class="layui-icon"></i> 添加
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
</form>
|
||
|
|
</td>
|
||
|
|
<!--<td align="right">
|
||
|
|
<button class="layui-btn layui-btn-sm" onclick="location.href='addMenu.html'" permission="sys:menu:add">
|
||
|
|
<i class="layui-icon"></i> 添加
|
||
|
|
</button>
|
||
|
|
</td>-->
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
<div>
|
||
|
|
<div class="widget-body no-padding">
|
||
|
|
<table id="dt-table" class="table table-striped table-bordered table-hover" style="width:100%">
|
||
|
|
<tr>
|
||
|
|
<th>字典名称</th>
|
||
|
|
<th>备注</th>
|
||
|
|
<th>操作</th>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
|
||
|
|
<script type="text/javascript" src="../../../js/libs/jquery-3.6.0.js"></script>
|
||
|
|
<script type="text/javascript" src="../../../js/jq.js"></script>
|
||
|
|
<script type="text/javascript" src="../../../layui/layui.js"></script>
|
||
|
|
<script type="text/javascript" src="../../../js/my/permission.js"></script>
|
||
|
|
<script src="../../../js/libs/jquery.treetable.js"></script>
|
||
|
|
<script src="../../../js/publicJs.js"></script>
|
||
|
|
<script type="text/javascript" src="../../../js/work/ownPerson/dictionaryList.js" ></script>
|