<?php namespace app\admin\controller; use think\Controller; use think\Request; class Index extends Controller { /** * 显示资源列表 * * @return \think\Response */ public function index() { return $this->fetch(); } /** 后台主页内容 */ public function welcome(){ return $this->fetch(); } }
显示效果如下: