2017-12-13 17:50:58 +08:00
|
|
|
@section header
|
|
|
|
{
|
|
|
|
<link rel="stylesheet" href="/css/treetable.css" />
|
|
|
|
}
|
|
|
|
|
2018-04-10 10:46:23 +08:00
|
|
|
<div class="layui-row">
|
|
|
|
<div class="layui-col-xs3">
|
|
|
|
<ul id="tree" class="ztree"
|
|
|
|
style="padding: 2px; border: 1px solid #ddd; overflow: auto;"></ul>
|
|
|
|
</div>
|
|
|
|
<div class="layui-col-xs9">
|
|
|
|
<table class="layui-table"
|
|
|
|
lay-data="{height: 'full-5', page:true, id:'mainList'}"
|
|
|
|
lay-filter="list" lay-size="sm">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th lay-data="{checkbox:true, fixed: true}"></th>
|
|
|
|
<th lay-data="{field:'Name', width:150}">菜单名称</th>
|
|
|
|
<th lay-data="{field:'DomId', width:150}">DomID</th>
|
|
|
|
<th lay-data="{templet:'#icontmpl', width:150}">按钮图标</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
</table>
|
|
|
|
<script type="text/html" id="icontmpl">
|
|
|
|
<i class="layui-icon" style="font-size: 20px; color: #1E9FFF;">{{ d.Icon }}</i>
|
|
|
|
</script>
|
|
|
|
</div>
|
2017-12-13 17:50:58 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<script type="text/javascript" src="/layui/layui.js"></script>
|
2018-04-09 17:36:28 +08:00
|
|
|
<script type="text/javascript" src="/userJs/assignModule.js"></script>
|