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

COS、CDN
wdzsjl 2周前 (01-01) 阅读数 44 #帝国EmpireCMS
  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" 参数使所有节点默认折叠。
COS、CDN
热门