更新菜单模块

This commit is contained in:
邹景立 2017-02-17 14:01:17 +08:00
parent a61ef3bb01
commit a189014159
4 changed files with 43 additions and 25 deletions

View File

@ -62,7 +62,7 @@ class Index extends BasicAdmin {
$alert = [
'type' => 'danger',
'title' => '安全提示',
'content' => '超级管理员默认密码未修改,建议马上修改!'
'content' => '超级管理员默认密码未修改,建议马上<a href="javascript:void(0)">修改</a>'
];
$this->assign('title', '后台首页');
$this->assign('alert', $alert);

View File

@ -146,7 +146,7 @@ class Menu extends BasicAdmin {
*/
public function del() {
if (Data::update($this->table)) {
$this->success("菜单删除成功!");
$this->success("菜单删除成功!", '');
} else {
$this->error("菜单删除失败,请稍候再试!");
}
@ -157,7 +157,7 @@ class Menu extends BasicAdmin {
*/
public function forbid() {
if (Data::update($this->table)) {
$this->success("菜单禁用成功!");
$this->success("菜单禁用成功!", '');
} else {
$this->error("菜单禁用失败,请稍候再试!");
}
@ -168,30 +168,10 @@ class Menu extends BasicAdmin {
*/
public function resume() {
if (Data::update($this->table)) {
$this->success("菜单启用成功!");
$this->success("菜单启用成功!", '');
} else {
$this->error("菜单启用失败,请稍候再试!");
}
}
/**
* 读取菜单节点数据
* @return array
*/
private function _getMenuNodeData() {
$list = Node::getNodeArrayTree(implode(",", Node::getDir(APP_PATH)));
unset($list['Admin']['Public'], $list['Admin']['Index']);
//只识别菜单属性的节点
foreach ($list as $key => $module) {
foreach ($module as $_key => $action) {
foreach ($action as $__key => $method) {
if (!isset($method['menu']) || !is_array($method['menu']) || empty($method['menu']['status'])) {
unset($list[$key][$_key][$__key]);
}
}
}
}
return $list;
}
}

File diff suppressed because one or more lines are too long

View File

@ -117,6 +117,8 @@ input::-ms-clear {display:none}
::selection {background-color:#ec494e;color:#FFF}
::-moz-selection {background-color:#ec494e;color:#FFF}
.layui-box legend{width:auto!important;border-bottom:none!important}
/** checkbox 优化 */
input[type=checkbox],input[type=radio] {-webkit-appearance:none;appearance:none;width:18px;height:18px;margin:0;cursor:pointer;vertical-align:bottom;background:#fff;border:1px solid #dcdcdc;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:relative}
input[type=checkbox]:active,input[type=radio]:active {border-color:#c6c6c6;background:#ebebeb}