我的知识记录

请问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" 参数使所有节点默认折叠。

标签:

更新时间:2025-04-10 23:49:55

上一篇:请问PbootCMS在阿里云主机上邮件发送失败:服务器已经禁用stream_socket_client和fsockopen函数怎么解决

下一篇:请问PbootCMS提交留言表单后跳转到指定网址