更新isLogin为pro方法

This commit is contained in:
邹景立 2017-02-23 15:06:11 +08:00
parent 480a3e377f
commit c4b8e24d56

View File

@ -23,17 +23,6 @@ class Menu extends BasicAdmin {
*/
protected $table = 'SystemMenu';
/**
* 定义菜单链接打开方式
* @var array
*/
protected $targetList = [
'_self' => '本窗口打开',
'_blank' => '新窗口打开',
'_parent' => '父窗口打开',
'_top' => '顶级窗口打开',
];
/**
* 菜单列表
*/
@ -54,6 +43,27 @@ class Menu extends BasicAdmin {
$data = Tools::arr2table($data);
}
/**
* 添加菜单
*/
public function add() {
if ($this->request->isPost()) {
$this->error('系统开发中,不要动菜单哦!');
}
return $this->_form($this->table, 'form');
}
/**
* 编辑菜单
*/
public function edit() {
return $this->add();
}
/**
* 表单数据前缀方法
* @param array $vo
*/
protected function _form_filter(&$vo) {
if ($this->request->isGet()) {
$_menus = Db::name($this->table)->where('status', '1')->order('sort desc,id desc')->select();
@ -76,23 +86,6 @@ class Menu extends BasicAdmin {
}
}
/**
* 添加菜单
*/
public function add() {
if ($this->request->isPost()) {
$this->error('系统开发中,不要动菜单哦!');
}
return $this->_form($this->table, 'form');
}
/**
* 编辑菜单
*/
public function edit() {
return $this->add();
}
/**
* 删除菜单
*/