// +---------------------------------------------------------------------- namespace app\controller\front; class Index extends Base { /** * @title 网站首页 * @return [type] [description] */ public function index() { if ($this->request->isPost()) { dump($this->request->param()); }else{ return $this->fetch(); } } public function miss(){ return $this->fetch(); } }