|
@@ -2,7 +2,7 @@
|
|
|
|
|
|
{block name="button"}
|
|
|
<!--{if $type eq 'index' and auth("add")}-->
|
|
|
-<button data-modal='{:url("add")}' data-title="添加菜单" class='layui-btn layui-btn-sm layui-btn-primary'>添加菜单</button>
|
|
|
+<button data-modal='{:url("add")}' class='layui-btn layui-btn-sm layui-btn-primary'>添加菜单</button>
|
|
|
<!--{/if}-->
|
|
|
|
|
|
<!--{if $type eq 'index' and auth("state")}-->
|
|
@@ -25,78 +25,102 @@
|
|
|
{/if}{/foreach}
|
|
|
</ul>
|
|
|
<div class="layui-tab-content">
|
|
|
- {empty name='list'}
|
|
|
- <div class="notdata">没有记录哦</div>
|
|
|
- {else}
|
|
|
- <table class="layui-table" lay-skin="line">
|
|
|
- <thead>
|
|
|
- <tr>
|
|
|
- <th class='list-table-check-td think-checkbox'>
|
|
|
- <label><input data-auto-none data-check-target='.list-check-box' type='checkbox'></label>
|
|
|
- </th>
|
|
|
- <th class='list-table-sort-td'>
|
|
|
- <button type="button" data-reload class="layui-btn layui-btn-xs">刷 新</button>
|
|
|
- </th>
|
|
|
- <th class='text-center' style="width:30px"></th>
|
|
|
- <th style="width:230px"></th>
|
|
|
- <th class='layui-hide-xs' style="width:180px"></th>
|
|
|
- <th colspan="2"></th>
|
|
|
- </tr>
|
|
|
- </thead>
|
|
|
- <tbody>
|
|
|
- {foreach $list as $key=>$vo}
|
|
|
- <tr data-dbclick class="{if ($type eq 'index' and $vo.status eq 0)}layui-hide{/if}">
|
|
|
- <td class='list-table-check-td think-checkbox'>
|
|
|
- <label><input class="list-check-box" value='{$vo.ids}' type='checkbox'></label>
|
|
|
- </td>
|
|
|
- <td class='list-table-sort-td'>
|
|
|
- <input data-action-blur="{:sysuri()}" data-value="id#{$vo.id};action#sort;sort#{value}" data-loading="false" value="{$vo.sort}" class="list-sort-input">
|
|
|
- </td>
|
|
|
- <td class='text-center'><i class="{$vo.icon} font-s18"></i></td>
|
|
|
- <td class="nowrap"><span class="color-desc">{$vo.spl|raw}</span>{$vo.title}</td>
|
|
|
- <td class='layui-hide-xs layui-elip'>{$vo.url}</td>
|
|
|
- <td class='text-center nowrap'>{eq name='vo.status' value='0'}<span class="color-red">已禁用</span>{else}<span class="color-green">已激活</span>{/eq}</td>
|
|
|
- <td class='text-center nowrap notselect'>
|
|
|
+ <table id="MenuData" data-url="{:sysuri()}" data-target-search="form.form-search"></table>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
|
|
|
- {if isset($type) and $type eq 'index'}
|
|
|
+<script>
|
|
|
+ $(function () {
|
|
|
+ $('#MenuData').layTable({
|
|
|
+ even: true, height: 'full', page: false,
|
|
|
+ sort: {field: 'sort desc,id', type: 'asc'},
|
|
|
+ where: {type: '{$type|default="index"}'},
|
|
|
+ filter: function (items) {
|
|
|
+ var type = this.where.type;
|
|
|
+ return items.filter(function (item) {
|
|
|
+ return !(type === 'index' && item.status === 0);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ cols: [[
|
|
|
+ {checkbox: true, field: 'ids'},
|
|
|
+ {field: 'sort', title: '排序权重', width: 100, align: 'center', sort: true, templet: '#SortInputTpl'},
|
|
|
+ {
|
|
|
+ field: 'icon', title: '图标', width: 100, align: 'center', templet: function (d) {
|
|
|
+ return layui.laytpl('<i class="{{d.icon}} font-s18"></i>').render(d);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'title', title: '菜单名称', minWidth: 220, templet: function (d) {
|
|
|
+ return layui.laytpl('<span class="color-desc">{{d.spl}}</span>{{d.title}}').render(d);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {field: 'status', title: '菜单状态', minWidth: 120, align: 'center', templet: '#StatusSwitchTpl'},
|
|
|
+ //{field: 'create_at', title: '创建时间', minWidth: 170, align: 'center'},
|
|
|
+ {toolbar: '#toolbar', title: '操作面板', minWidth: 170, align: 'center', fixed: 'right'},
|
|
|
+ ]]
|
|
|
+ });
|
|
|
|
|
|
- {if auth("add")}
|
|
|
- <!--{if $vo.spt < 2}-->
|
|
|
- <a class="layui-btn layui-btn-sm layui-btn-primary" data-title="添加子菜单" data-modal='{:url("add")}?pid={$vo.id}'>添 加</a>
|
|
|
- <!--{else}-->
|
|
|
- <a class="layui-btn layui-btn-sm layui-btn-disabled">添 加</a>
|
|
|
- <!--{/if}-->
|
|
|
- {/if}
|
|
|
+ // 数据状态切换操作
|
|
|
+ layui.form.on('switch(StatusSwitch)', function (obj) {
|
|
|
+ var data = {id: obj.value, status: obj.elem.checked > 0 ? 1 : 0};
|
|
|
+ if (data.status > 0) data.id += obj.elem.dataset.path.replace(/-/g, ',');
|
|
|
+ $.form.load("{:url('state')}", data, 'post', function (ret) {
|
|
|
+ if (obj.value.indexOf(',') > -1) {
|
|
|
+ $('#MenuData').trigger('reload');
|
|
|
+ } else if (ret.code < 1) $.msg.error(ret.info, 3, function () {
|
|
|
+ $('#MenuData').trigger('reload');
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }, false);
|
|
|
+ });
|
|
|
+ });
|
|
|
+</script>
|
|
|
|
|
|
- <!--{if auth("edit")}-->
|
|
|
- <a data-dbclick class="layui-btn layui-btn-sm" data-title="编辑菜单" data-modal='{:url("edit")}?id={$vo.id}'>编 辑</a>
|
|
|
- <!--{/if}-->
|
|
|
+<!-- 数据状态切换模板 -->
|
|
|
+<script type="text/html" id="StatusSwitchTpl">
|
|
|
+ <!--{if auth("state")}-->
|
|
|
+ {{# if( "{$type|default='index'}"==='index' || (d.spc<1 || d.status<1)){ }}
|
|
|
+ <input type="checkbox" value="{{d.ids}}" data-path="{{d.path}}" lay-skin="switch" lay-text="已激活|已禁用" lay-filter="StatusSwitch" {{d.status>0?'checked':''}}>
|
|
|
+ {{# }else{ }}
|
|
|
+ {{d.status ? '<b class="color-green">已激活</b>' : '<b class="color-red">已禁用</b>'}}
|
|
|
+ {{# } }}
|
|
|
+ <!--{else}-->
|
|
|
+ {{d.status ? '<b class="color-green">已激活</b>' : '<b class="color-red">已禁用</b>'}}
|
|
|
+ <!--{/if}-->
|
|
|
+</script>
|
|
|
|
|
|
- <!--{if $vo.status eq 1 and auth("state")}-->
|
|
|
- <a class="layui-btn layui-btn-warm layui-btn-sm" data-confirm="确定要禁用菜单吗?" data-action="{:url('state')}" data-value="id#{$vo.ids};status#0" data-csrf="{:systoken('state')}">禁 用</a>
|
|
|
- <!--{/if}-->
|
|
|
+<!-- 列表排序权重模板 -->
|
|
|
+<script type="text/html" id="SortInputTpl">
|
|
|
+ <input type="number" min="0" data-blur-number="0" data-action-blur="{:sysuri()}" data-value="id#{{d.id}};action#sort;sort#{value}" data-loading="false" value="{{d.sort}}" class="layui-input text-center">
|
|
|
+</script>
|
|
|
|
|
|
- {else}
|
|
|
+<!-- 操控面板的模板 -->
|
|
|
+<script type="text/html" id="toolbar">
|
|
|
|
|
|
- <!--{if auth("state")}-->
|
|
|
- <a class="layui-btn layui-btn-warm layui-btn-sm" data-confirm="确定要激活菜单吗?" data-action="{:url('state')}" data-value="id#{$vo.ids};status#1" data-csrf="{:systoken('state')}">激 活</a>
|
|
|
- <!--{/if}-->
|
|
|
+ <!-- {if isset($type) and $type eq 'index'} -->
|
|
|
+ <!-- {if auth('add')} -->
|
|
|
+ {{# if(d.spt<2){ }}
|
|
|
+ <a class="layui-btn layui-btn-sm layui-btn-primary" data-title="添加系统菜单" data-modal='{:url("add")}?pid={{d.id}}'>添 加</a>
|
|
|
+ {{# }else{ }}
|
|
|
+ <a class="layui-btn layui-btn-sm layui-btn-disabled">添 加</a>
|
|
|
+ {{# } }}
|
|
|
+ <!-- {/if} -->
|
|
|
+ {if auth('edit')}
|
|
|
+ <a class="layui-btn layui-btn-sm" data-title="编辑系统菜单" data-modal='{:url("edit")}?id={{d.id}}'>编 辑</a>
|
|
|
+ {/if}
|
|
|
+ <!-- {else} -->
|
|
|
+ {if auth('remove')}
|
|
|
|
|
|
- <!--{if auth("remove") and ($vo.spc<1 or $vo.status<1)}-->
|
|
|
- <a class="layui-btn layui-btn-danger layui-btn-sm" data-confirm="确定要删除菜单吗?" data-action="{:url('remove')}" data-value="id#{$vo.ids}" data-csrf="{:systoken('remove')}">删 除</a>
|
|
|
- <!--{/if}-->
|
|
|
+ {{# if( (d.spc<1 || d.status<1)){ }}
|
|
|
+ <a class="layui-btn layui-btn-sm layui-btn-danger" data-confirm="确定要删除菜单吗?" data-action="{:url('remove')}" data-value="id#{{d.ids}}">删 除</a>
|
|
|
|
|
|
- <!--{if auth("remove") and $vo.spc>0 and $vo.status>0}-->
|
|
|
- <a class="layui-btn layui-btn-disabled layui-btn-sm">删 除</a>
|
|
|
- <!--{/if}-->
|
|
|
+ {{# }else{ }}
|
|
|
+ <a class="layui-btn layui-btn-disabled layui-btn-sm">删 除</a>
|
|
|
+ {{# } }}
|
|
|
|
|
|
- {/if}
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- {/foreach}
|
|
|
- </tbody>
|
|
|
- </table>
|
|
|
- {/empty}
|
|
|
- </div>
|
|
|
-</div>
|
|
|
-{/block}
|
|
|
+ {/if}
|
|
|
+
|
|
|
+ <!-- {/if} -->
|
|
|
+
|
|
|
+</script>
|
|
|
+{/block}
|