| 12345678910111213141516171819202122232425262728293031 |
- window.initModuleTree = function()
- {
- $('#moduleTree').replaceWith('<ul id="moduleTree"></ul>');
- $('#extendWin').attr('src', '');
- data = appendClickEvent(moduleTree);
- new zui.Tree("#moduleTree", {items: data});
- };
- window.appendClickEvent = function(moduleTree)
- {
- for(const tree of moduleTree)
- {
- if(tree.link != '') tree.onClick = openInExtend;
- if(typeof(tree.items) != 'undefined') tree.items = appendClickEvent(tree.items);
- }
- return moduleTree;
- };
- window.openInExtend = function(event, node)
- {
- let $this = $(node.element);
- if(node.item.link == '') return;
- extendWin.location.href = node.item.link;
- $this.closest('#moduleTree').find('li.active').removeClass('active');
- $this.closest('li.tree-item').addClass('active');
- $this.closest('li.tree-item.has-nested-menu').addClass('active');
- };
- window.waitDom('#moduleTree', initModuleTree);
|