摘要:<?php namespace app\admin\controller; use think\Controller; class Index extends Controller { //渲染后台首页 public function index() { return $this->fetch(
<?php
namespace app\admin\controller;
use think\Controller;
class Index extends Controller
{
//渲染后台首页
public function index()
{
return $this->fetch();
}
//渲染后台欢迎页
public function welcome()
{
return $this->fetch();
}
}
批改老师:天蓬老师批改时间:2019-03-21 14:51:10
老师总结:推荐写上模板文件名, 尽可能不要用默认值,哪怕你重写一次默认名: return $this->fetch('index');