50b6c17f8fddf454e2613957e70f682afd5916a2.svn-base 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | home
  5. |--------------------------------------------------------------------------
  6. */
  7. $view
  8. ->fetch('body@class', 'theme-<{Maze::load("/auth.config#template")}>')
  9. # 小标题
  10. ->fetch('#list-name', '/database.info#list_header')
  11. ->fetch('#list-project', '/database.info#project_name')
  12. # 新增的链接 @代表属性
  13. ->fetch('#list-add@onclick', '/database.info#add')
  14. ->fetch('#list-add@style', '/database.info#add_state')
  15. ->fetch('#list-parent@onclick', '/database.info#parent')
  16. ->fetch('#list-parent@style', '/database.info#parent_state')
  17. # 数据列表的搜索
  18. ->fetch('#search', '/database.list_search')
  19. ->fetch('#desc', 'manage/database.info#listDesc', 'none')
  20. # 数据列表的标题
  21. ->fetch('#list-thead tr', '/database.list_thead')
  22. # 数据列表
  23. ->fetch('#list-tbody','/database.list_tbody')
  24. # 数据列表
  25. ->fetch('#list-button','/database.list_button')
  26. # 批量管理的表单
  27. ->fetch('#mul','/database.list_mul')
  28. # 表单的action
  29. ->fetch('#form1@action', '/database.info#list')
  30. # url的值
  31. ->fetch('#url@value', '/database.info#mul')
  32. # 分页
  33. ->fetch('#page','<{Maze::page("current")}>')
  34. # 总数据 加在头部里吧
  35. ->fetch('#list-desc', '<{Maze::load("/database.info#list_desc")}>(共<{Maze::total("current")}>条)')
  36. # 数据结构
  37. ->fetch('#struct', '/database.info#struct')
  38. # 将上边fetch的都显示出来
  39. ->display();