// +---------------------------------------------------------------------- namespace app\controller\front; class Index extends Base { /** * @title 网站首页 * @return [type] [description] */ public function index() { $this->setSeo("网站首页", '网站首页', '网站首页'); return $this->fetch(); } public function miss(){ return $this->fetch(); } }