| 12345678910111213141516171819202122232425262728293031 |
- $(document).ready(function() {
- $("#main_content_title").html("用户管理")
- var myTreeData = [{
- title: '水果',
- url: 'http://zui.sexy',
- open: true,
- children: [
- { title: '橘子' },
- {
- title: '瓜',
- children: [
- { title: '西瓜' },
- { title: '黄瓜' }
- ]
- }
- ]
- }, {
- title: '坚果',
- children: [
- { title: '向日葵' },
- { title: '瓜子' }
- ]
- }, {
- title: '蔬菜'
- }];
- $('#department_tree').tree({ data: myTreeData });
- });
|