摘要:<?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(); } /** 后臺主頁內(nèi)容 */ public function welcome(){ return $this->fetch(); } }
顯示效果如下:
批改老師:天蓬老師批改時間:2019-03-19 09:25:07
老師總結(jié):首頁,就是 一個普通的頁面, 但是這個頁面比較特殊, 是其它頁面的入口, 具有索引作用,所以一般叫: index