摘要:<?php namespace app\admin\controller; use think\Controller; use think\Request; class Index extends Controller { /**
<?php
namespace app\admin\controller;
use think\Controller;
use think\Request;
class Index extends Controller
{
/**
* 显示资源列表
*
* @return \think\Response
*/
public function index()
{
return $this->fetch();
}
/**
后台主页内容
*/
public function welcome(){
return $this->fetch();
}
}显示效果如下:

批改老师:天蓬老师批改时间:2019-03-19 09:25:07
老师总结:首页,就是 一个普通的页面, 但是这个页面比较特殊, 是其它页面的入口, 具有索引作用,所以一般叫: index