| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 | 
							- <?php
 
- /*
 
- |--------------------------------------------------------------------------
 
- | home
 
- |--------------------------------------------------------------------------
 
- */
 
- $view
 
- ->fetch('body@class', 'theme-<{Dever::load("/auth.config#template")}>')
 
- # 小标题
 
- ->fetch('#list-name', '项目管理')
 
- ->fetch('#list-desc', '对项目进行线上管理')  
 
- # 新增的链接 @代表属性
 
- ->fetch('#list-add@onclick', 'none')
 
- # 设置按钮状态
 
- ->fetch(array('.am-btn-default@style', 0), 'display:none')
 
- ->fetch(array('.am-btn-default@style', 1), 'display:none')
 
- ->fetch(array('.am-btn-default@style', 2), 'display:none') 
 
- ->fetch(array('.am-btn-default@style', 3), 'display:none')
 
- # 隐藏搜索
 
- ->fetch('#search@style', 'display:none')
 
- # 隐藏分页
 
- ->fetch('#page-list@style', 'display:none')
 
- # config
 
- ->fetch(array('#list-thead th', 0), '类型')
 
- ->fetch(array('#list-thead th', 1), '名称')   
 
- ->fetch(array('#list-thead th@style', 2), 'display:none')
 
- ->fetch(array('#list-thead th@style', 3), 'display:none')     
 
- ->fetch
 
- ( 
 
-     '#list-tbody tr',
 
-     'manage/config.get',
 
-     array  
 
-     (
 
- 		'td|0' => '<{if(strstr($v,\'.\')){$config = "file";echo "文件";}else{$config = "config";echo "目录";}}>', 
 
-     
 
- 		'td|1' => '<a href="<{Dever::url("project/".$config."?key=".Dever::input(\'key\')."&dir=".Dever::input(\'dir\')."&name=$v")}>"><{$v}></a>',
 
-         'td|2' => array
 
-         (
 
-             'style' => 'display:none;', 
 
-         ),
 
-         
 
-         'td|3' => array
 
-         (
 
-             'style' => 'display:none;', 
 
-         ),
 
-      
 
-     )
 
- )
 
- # display
 
- ->display();
 
 
  |