You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.9 KiB
69 lines
1.9 KiB
<?php
|
|
/**
|
|
* 后台菜单配置
|
|
* 'home' => [
|
|
* 'name' => '首页', // 菜单名称
|
|
* 'icon' => 'icon-home', // 图标 (class)
|
|
* 'index' => 'index/index', // 链接
|
|
* ],
|
|
*/
|
|
return [
|
|
// 'store' => [
|
|
// 'name' => '小程序商城',
|
|
// 'icon' => 'icon-shangcheng',
|
|
// 'submenu' => [
|
|
// [
|
|
// 'name' => '商城列表',
|
|
// 'index' => 'store/index',
|
|
// 'uris' => [
|
|
// 'store/index',
|
|
// 'store/add',
|
|
// ]
|
|
// ],
|
|
// [
|
|
// 'name' => '回收站',
|
|
// 'index' => 'store/recycle'
|
|
// ],
|
|
// [
|
|
// 'name' => '权限管理',
|
|
// 'index' => 'store.access/index'
|
|
// ]
|
|
// ],
|
|
// ],
|
|
// 'statistics' => [
|
|
// 'name' => '数据统计',
|
|
// 'icon' => 'icon-shezhi',
|
|
// 'submenu' => [
|
|
// [
|
|
// 'name' => '客流统计数据',
|
|
// 'index' => 'pass.pass/index'
|
|
// ],
|
|
// [
|
|
// 'name' => '总客流统计数据',
|
|
// 'index' => 'pass.pass/allIndex'
|
|
// ],
|
|
// [
|
|
// 'name' => '客流实时统计数据',
|
|
// 'index' => 'pass.pass/realIndex'
|
|
// ],
|
|
// ],
|
|
// ],
|
|
'setting' => [
|
|
'name' => '系统设置',
|
|
'icon' => 'icon-shezhi',
|
|
'submenu' => [
|
|
// [
|
|
// 'name' => '清理缓存',
|
|
// 'index' => 'setting.cache/clear'
|
|
// ],
|
|
// [
|
|
// 'name' => '环境检测',
|
|
// 'index' => 'setting.science/index'
|
|
// ],
|
|
[
|
|
'name' => '配置',
|
|
'index' => 'setting.config/index'
|
|
],
|
|
],
|
|
],
|
|
];
|
|
|