完成新的安装流程,开始优化日志管理;

This commit is contained in:
2022-04-19 22:16:58 +08:00
parent e29f8ff4ea
commit 7852f602bb
22 changed files with 296 additions and 207 deletions

View File

@@ -0,0 +1,61 @@
<?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;