<?php namespace app\admin\controller; use think\Controller; class Index extends Controller { public function index() { //渲染模板 return $this->fetch(); } public function welcome() { //渲染模板 return $this->fetch(); } }