123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- /*
- |--------------------------------------------------------------------------
- | home
- |--------------------------------------------------------------------------
- */
- $view
- ->fetch('body@class', 'theme-<{Maze::load("/auth.config#template")}>')
- # 小标题
- ->fetch('#list-name', '/database.info#list_header')
- ->fetch('#list-project', '/database.info#project_name')
- # 新增的链接 @代表属性
- ->fetch('#list-add@onclick', '/database.info#add')
- ->fetch('#list-add@style', '/database.info#add_state')
- ->fetch('#list-parent@onclick', '/database.info#parent')
- ->fetch('#list-parent@style', '/database.info#parent_state')
- # 数据列表的搜索
- ->fetch('#search', '/database.list_search')
- ->fetch('#desc', 'manage/database.info#listDesc', 'none')
- # 数据列表的标题
- ->fetch('#list-thead tr', '/database.list_thead')
- # 数据列表
- ->fetch('#list-tbody','/database.list_tbody')
- # 数据列表
- ->fetch('#list-button','/database.list_button')
- # 批量管理的表单
- ->fetch('#mul','/database.list_mul')
- # 表单的action
- ->fetch('#form1@action', '/database.info#list')
- # url的值
- ->fetch('#url@value', '/database.info#mul')
- # 分页
- ->fetch('#page','<{Maze::page("current")}>')
- # 总数据 加在头部里吧
- ->fetch('#list-desc', '<{Maze::load("/database.info#list_desc")}>(共<{Maze::total("current")}>条)')
- # 数据结构
- ->fetch('#struct', '/database.info#struct')
- # 将上边fetch的都显示出来
- ->display();
|