更新编辑

This commit is contained in:
邹景立 2017-02-20 10:55:25 +08:00
parent a937e804b9
commit 566c24ae37
2 changed files with 3 additions and 3 deletions

View File

@ -58,14 +58,14 @@ class Menu extends BasicAdmin {
* 添加菜单
*/
public function add() {
return $this->_form($this->table);
return $this->_form($this->table, 'form');
}
/**
* 编辑菜单
*/
public function edit() {
return $this->_form($this->table);
return $this->_form($this->table, 'form');
}
/**

View File

@ -156,7 +156,7 @@ class BasicAdmin extends Controller {
$this->_callback('_form_filter', $vo);
$this->assign('vo', $vo);
empty($this->title) or $this->assign('title', $this->title);
return is_null($tpl) ? $vo : $this->display($tpl);
return is_null($tpl) ? $vo : $this->fetch($tpl);
}
/**