mirror of https://gitee.com/y_project/RuoYi.git
菜单表格树第一级默认不展开
parent
e26b65459e
commit
d066bf022b
|
@ -103,9 +103,11 @@ $(function() {
|
|||
}).bind("input propertychange", $.tree.searchNode);
|
||||
}
|
||||
// tree表格树 展开/折叠
|
||||
var expandFlag = false;
|
||||
var expandFlag;
|
||||
$("#expandAllBtn").click(function() {
|
||||
if (expandFlag) {
|
||||
var dataExpand = $.common.isEmpty($.table._option.expandAll) ? true : $.table._option.expandAll;
|
||||
expandFlag = $.common.isEmpty(expandFlag) ? dataExpand : expandFlag;
|
||||
if (!expandFlag) {
|
||||
$('#' + $.table._option.id).bootstrapTreeTable('expandAll');
|
||||
} else {
|
||||
$('#' + $.table._option.id).bootstrapTreeTable('collapseAll');
|
||||
|
|
|
@ -59,7 +59,7 @@
|
|||
parentCode: "parentId",
|
||||
uniqueId: "menuId",
|
||||
expandAll: false,
|
||||
expandFirst: true,
|
||||
expandFirst: false,
|
||||
url: prefix + "/list",
|
||||
createUrl: prefix + "/add/{id}",
|
||||
updateUrl: prefix + "/edit/{id}",
|
||||
|
|
Loading…
Reference in New Issue