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