bootstrap treeview实现菜单树

本博客,介绍通过Bootstrap的treeview插件实现菜单树的功能。

treeview链接:http://www.htmleaf.com/Demo/201502141380.html

ORM框架是Mybatis的,这里其实就是单表查询而已,获取要做菜单树的信息表,这张表必须要有一个parentSeq,然后通过关联实现。


            gr.seq,
            gr.group_name,
            gr.group_desc,
            gr.group_type,
            gr.parent_seq,
            case when (select count(1)
                        from t_group_define
                       where parent_seq = gr.seq)> 0 then 'true' else 'false'
            end as subFlag
    
    
    
                    

你可能感兴趣的:(bootstrap treeview实现菜单树)