PbootCMS后台设置二级菜单默认展开(后台栏目所有展开)

  1. 找到 /APPs/admin/view/default/content/contentsort.html 文件。
  2. 将第100行左右的代码:
    $("#sortTable").treetable({
        expandable: true,
        column: 1,
        indent: 20,
        stringCollapse: '收缩',
        stringExpand: '展开'
    });
    修改为:
    $("#sortTable").treetable({
        expandable: true,
        column: 1,
        indent: 20,
        stringCollapse: '收缩',
        stringExpand: '展开',
        initialState: "expanded"
    });
    • initialState: "expanded" 参数使所有节点默认展开。
    • initialState: "collapsed" 参数使所有节点默认折叠。
posted @ 2024-11-06 09:03  黄文Rex  阅读(76)  评论(0)    收藏  举报