29 lines
803 B
PHP
29 lines
803 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | SentCMS [ WE CAN DO IT JUST THINK IT ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2013 http://www.tensent.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Author: molong <molong@tensent.cn> <http://www.tensent.cn>
|
|
// +----------------------------------------------------------------------
|
|
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();
|
|
}
|
|
}
|