From c4b8e24d56e38ae94645afa7ce7ce562e7410e9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Thu, 23 Feb 2017 15:06:11 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0isLogin=E4=B8=BApro=E6=96=B9?= =?UTF-8?q?=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/admin/controller/Menu.php | 49 ++++++++++++--------------- 1 file changed, 21 insertions(+), 28 deletions(-) diff --git a/application/admin/controller/Menu.php b/application/admin/controller/Menu.php index 99afe4b80..f2a66f69a 100644 --- a/application/admin/controller/Menu.php +++ b/application/admin/controller/Menu.php @@ -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(); - } - /** * 删除菜单 */