请问PbootCMS后台设置二级菜单默认展开(后台栏目所有展开)
- 找到
/APPs/admin/view/default/content/contentsort.html
文件。 - 将第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函数怎么解决
转载请注明原文链接:https://www.muzicopy.com/suibi/3727.html