渲染后台首页和欢迎页代码

Original 2019-03-21 14:14:15 186
abstract:<?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();
	}
}


Correcting teacher:天蓬老师Correction time:2019-03-21 14:51:10
Teacher's summary:推荐写上模板文件名, 尽可能不要用默认值,哪怕你重写一次默认名: return $this->fetch('index');

Release Notes

Popular Entries