<?php namespace app\admin\controller; // 引入框架控制器 use think\Controller; // 继承框架控制器 class Index extends Controller { // 后台首页 public function index() { // 渲染模板 return $this->fetch(); } // 后台欢迎页面 public function welcome() { // 渲染模板 return $this->fetch(); } }