19 lines
		
	
	
		
			297 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			297 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  *	后台管理系统-首页
 | |
|  */
 | |
| namespace app\index\controller;
 | |
| use app\index\controller\Base;
 | |
| use think\facade\Db;
 | |
| use think\facade\View;
 | |
| use think\facade\Env;
 | |
| use think\facade\Config;
 | |
| 
 | |
| class Index extends Base
 | |
| {
 | |
|     public function index()
 | |
|     {
 | |
|         return view('index');
 | |
|     }
 | |
| }
 |