Files
ulthon_admin/app/common/service/initAdminData/SystemQuick.php
2022-04-19 21:23:53 +08:00

62 lines
1.4 KiB
PHP

<?php
$ul_system_quick = array(
array(
"title" => "管理员管理",
"icon" => "fa fa-user",
"href" => "system.admin/index",
"sort" => 0,
"status" => 1,
),
array(
"title" => "角色管理",
"icon" => "fa fa-bitbucket-square",
"href" => "system.auth/index",
"sort" => 0,
"status" => 1,
),
array(
"title" => "菜单管理",
"icon" => "fa fa-tree",
"href" => "system.menu/index",
"sort" => 0,
"status" => 1,
),
array(
"title" => "节点管理",
"icon" => "fa fa-list",
"href" => "system.node/index",
"sort" => 0,
"status" => 1,
),
array(
"title" => "配置管理",
"icon" => "fa fa-asterisk",
"href" => "system.config/index",
"sort" => 0,
"status" => 1,
),
array(
"title" => "上传管理",
"icon" => "fa fa-arrow-up",
"href" => "system.uploadfile/index",
"sort" => 0,
"status" => 1,
),
array(
"title" => "商品分类",
"icon" => "fa fa-calendar-check-o",
"href" => "mall.cate/index",
"sort" => 0,
"status" => 1,
),
array(
"title" => "商品管理",
"icon" => "fa fa-list",
"href" => "mall.goods/index",
"sort" => 0,
"status" => 1,
)
);
return $ul_system_quick;