123456789101112131415161718192021222324 |
- <?php
- /*
- |--------------------------------------------------------------------------
- | home
- |--------------------------------------------------------------------------
- */
- $view
- # 定义名称
- ->fetch('#content_2@test', '1')
- ->fetch('#factory_status', 'factory/admin/stat.getSearch')
- ->fetch('#form1@action', 'factory/admin/stat.getConfig#search')
- ->fetch('#list-tbody', 'factory/admin/stat.getList')
- ->fetch('#factory_status@value', '<{Dever::input("factory_status")}>')
- ->fetch('#start@value', '<{Dever::input("start")}>')
- ->fetch('#end@value', '<{Dever::input("end")}>')
- ->fetch('#page','<{Dever::page("current")}>')
- # display
- ->display();
|