内核更新

This commit is contained in:
2016-08-07 07:44:03 +08:00
parent fed3a1d215
commit ebde0fc13e
6 changed files with 36 additions and 32 deletions

View File

@@ -144,6 +144,7 @@ class Base extends \think\Controller{
defined('IS_POST') or define('IS_POST', $this->request->isPost());
defined('IS_GET') or define('IS_GET', $this->request->isGet());
$this->url = $this->request->module() . '/' . $this->request->controller() . '/' . $this->request->action();
$this->assign('request',$this->request);
$this->assign('param',$this->param);
}