userManager.js 664 B

12345678910111213141516171819202122232425262728293031
  1. $(document).ready(function() {
  2. $("#main_content_title").html("用户管理")
  3. var myTreeData = [{
  4. title: '水果',
  5. url: 'http://zui.sexy',
  6. open: true,
  7. children: [
  8. { title: '橘子' },
  9. {
  10. title: '瓜',
  11. children: [
  12. { title: '西瓜' },
  13. { title: '黄瓜' }
  14. ]
  15. }
  16. ]
  17. }, {
  18. title: '坚果',
  19. children: [
  20. { title: '向日葵' },
  21. { title: '瓜子' }
  22. ]
  23. }, {
  24. title: '蔬菜'
  25. }];
  26. $('#department_tree').tree({ data: myTreeData });
  27. });