abstract:<?phpnamespace app\admin\controller;use think\Controller;/*** 后台首页控制器*/class Index extends Controller{ public function index() { return $this->view->fetch(); } public function welcome() {
<?php
namespace app\admin\controller;
use think\Controller;
/**
* 后台首页控制器
*/
class Index extends Controller
{
public function index()
{
return $this->view->fetch();
}
public function welcome()
{
return $this->view->fetch();
}
}
Correcting teacher:天蓬老师Correction time:2019-04-08 09:44:22
Teacher's summary:渲染后台首页, 全部采用了默认值, 不过, 还是推荐手工写上模板名称会提升可读性