调整源码对比方式;调整更新逻辑

This commit is contained in:
2023-10-18 15:19:05 +08:00
parent b83e5aa656
commit 8f1a749b8d
20 changed files with 372 additions and 373 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;