闫增涛
2025-04-14 4a0006c0b8df5befabf7403c0702f4429cf244e3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{extend name="../../base/view/common/base" /}
<!-- 主体 -->
{block name="body"}
<div class="p-page">
    <div class="gg-form-bar border-t border-x" style="padding-bottom:12px;">
        <button class="layui-btn layui-btn-sm add-menu">+ 添加菜单/节点</button>
    </div>
    <div>
        <table class="layui-hide" id="treeTable" lay-filter="treeTable"></table>
    </div>
</div>
{/block}
<!-- /主体 -->
 
<!-- 脚本 -->
{block name="script"}
<script>
    const moduleInit = ['tool'];
    function gouguInit() {
        var treeTable = layui.treeTable, tool = layui.tool;
        
        layui.trees = treeTable.render({
            elem: '#treeTable'
            ,url: "/home/rule/index"
            ,tree: { // treeTable 特定属性集
                customName: {name:'title'},
                data: {},
                view: {showIcon:false},
                async: {},
                callback: {}
            }
            , cellMinWidth: 80
            , cols: [[
                { field: 'id', width: 80, title: 'ID号', align: 'center' }
                , { field: 'sort', width: 60, title: '排序', align: 'center' }
                ,{field:'icon',title: '菜单图标',width: 80, align: 'center' ,templet: function(d){
                    var html='<strong class="iconfont '+d.icon+'"></strong>';
                    return html;
                }}
                , { field: 'title', width: 200, title: '菜单/节点名称' }
                , { field: 'pid', title: '父ID', width: 80, align: 'center' }
                , { field: 'src', title: 'URL链接' }
                , {
                    field: 'menu', width: 100, title: '是否是菜单', align: 'center', templet: function (d) {
                        var html = '<span style="color:#fbbc05">否</span>';
                        if (d.menu == '1') {
                            html = '<span style="color:#12bb37">是</span>';
                        }
                        return html;
                    }
                }
                , { field: 'name', width: 110, title: '操作日志名称', align: 'center' }
                , {
                    width: 188, title: '操作', align: 'center'
                    , templet: function (d) {
                        var html = '<span class="layui-btn-group"><button class="layui-btn layui-btn-xs" lay-event="add">添加子菜单/节点</button><button class="layui-btn layui-btn-normal  layui-btn-xs" lay-event="edit">编辑</button><button class="layui-btn layui-btn-danger layui-btn-xs" lay-event="del">删除</button>';
                        return html;
                    }
                }
            ]]
            , page: false
        });
        //表头工具栏事件
        $('.add-menu').on('click', function () {
            tool.side("/home/rule/add");
            return;
        });
 
        //操作按钮
        treeTable.on('tool(treeTable)', function (obj) {
            console.log(obj);
            if (obj.event === 'add') {
                tool.side('/home/rule/add?pid=' + obj.data.id);
                return;
            }
            if (obj.event === 'edit') {
                tool.side('/home/rule/add?id=' + obj.data.id);
                return;
            }
            if (obj.event === 'del') {
                layer.confirm('确定要删除吗?', { icon: 3, title: '提示' }, function (index) {
                    let callback = function (e) {
                        layer.msg(e.msg);
                        if (e.code == 0) {
                            obj.del();
                        }
                    }
                    tool.delete("/home/rule/delete", { id: obj.data.id }, callback);
                    layer.close(index);
                });
            }
        });
    }
</script>
{/block}
<!-- /脚本 -->