mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 23:42:48 +08:00
62 lines
1.4 KiB
PHP
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;
|