2017-02-20 10:38:10 +08:00

107 lines
2.4 KiB
PHP

<?php
namespace app\admin\controller;
use controller\BasicAdmin;
use library\Data;
use library\Node;
use library\Tools;
use think\Db;
/**
* 系统后台管理管理
* Class Menu
* @package app\admin\controller
* @author Anyon <zoujingli@qq.com>
* @date 2017/02/15
*/
class Menu extends BasicAdmin {
/**
* 绑定操作模型
* @var string
*/
protected $table = 'SystemMenu';
/**
* 定义菜单链接打开方式
* @var array
*/
protected $targetList = [
'_self' => '本窗口打开',
'_blank' => '新窗口打开',
'_parent' => '父窗口打开',
'_top' => '顶级窗口打开',
];
/**
* 菜单列表
*/
public function index() {
$this->title = '系统菜单管理';
parent::_list($this->table, false);
}
/**
* 列表数据处理
* @param array $data
*/
protected function _index_data_filter(&$data) {
foreach ($data as &$vo) {
($vo['url'] !== '#') && ($vo['url'] = url($vo['url']));
$vo['ids'] = join(',', Tools::getArrSubIds($data, $vo['id']));
}
$data = Tools::arr2table($data);
}
/**
* 添加菜单
*/
public function add() {
return $this->_form($this->table);
}
/**
* 编辑菜单
*/
public function edit() {
return $this->_form($this->table);
}
/**
* 删除菜单
*/
public function del() {
$this->error('别再删我菜单了...');
if (Data::update($this->table)) {
$this->success("菜单删除成功!", '');
} else {
$this->error("菜单删除失败,请稍候再试!");
}
}
/**
* 菜单禁用
*/
public function forbid() {
$this->error('请不要禁用菜单...');
if (Data::update($this->table)) {
$this->success("菜单禁用成功!", '');
} else {
$this->error("菜单禁用失败,请稍候再试!");
}
}
/**
* 菜单禁用
*/
public function resume() {
if (Data::update($this->table)) {
$this->success("菜单启用成功!", '');
} else {
$this->error("菜单启用失败,请稍候再试!");
}
}
}