<?phpnamespace app\admin\controller;use think\Controller;class Index extends Controller{ public function index(){ return $this->fetch(); } //欢迎界面模板 public function welcome() { return $this->fetch(); }}