abstract:
namespace app\admin\controller;
use think\Controller;
use think\facade\Session;
use app\admin\controller\Coomn;
class Index extends Coomn
{
//渲染index页面
public function index()
{
return $this->fetch();
}
//渲染主页面
public function welcome()
{
return $this->fetch();
}
}
Correcting teacher:查无此人Correction time:2019-05-17 09:38:39
Teacher's summary:完成的不错。首页的html代码,怎么没上传?继续加油吧。