81 lines
2.0 KiB
PHP
81 lines
2.0 KiB
PHP
<?php
|
|
/**
|
|
* 后台菜单配置
|
|
* 'home' => [
|
|
* 'name' => '首页', // 菜单名称
|
|
* 'icon' => 'icon-home', // 图标 (class)
|
|
* 'index' => 'index/index', // 链接
|
|
* ],
|
|
*/
|
|
return [
|
|
'index' => [
|
|
'name' => '首页',
|
|
'icon' => 'icon-home',
|
|
'index' => 'index/index',
|
|
],
|
|
'user' => [
|
|
'name' => '用户管理',
|
|
'icon' => 'icon-user',
|
|
'index' => 'user/index',
|
|
'submenu' => [
|
|
[
|
|
'name' => '用户列表',
|
|
'index' => 'user/index',
|
|
],
|
|
[
|
|
'name' => '解析记录',
|
|
'index' => 'user/lists',
|
|
],
|
|
],
|
|
],
|
|
'wxapp' => [
|
|
'name' => '小程序',
|
|
'icon' => 'icon-wxapp',
|
|
'index' => 'wxapp/setting',
|
|
'submenu' => [
|
|
[
|
|
'name' => '小程序设置',
|
|
'index' => 'wxapp/setting',
|
|
],
|
|
[
|
|
'name' => '流量主',
|
|
'index' => 'wxapp/ad',
|
|
],
|
|
[
|
|
'name' => '轮播图',
|
|
'index' => 'wxapp.help/index',
|
|
'uris' => [
|
|
'wxapp.help/index',
|
|
'wxapp.help/add',
|
|
'wxapp.help/edit'
|
|
]
|
|
],
|
|
[
|
|
'name' => '视频直链',
|
|
'index' => 'wxapp/urls',
|
|
],
|
|
],
|
|
],
|
|
'setting' => [
|
|
'name' => '设置',
|
|
'icon' => 'icon-setting',
|
|
'index' => 'setting/store',
|
|
'submenu' => [
|
|
[
|
|
'name' => '系统设置',
|
|
'index' => 'setting/store',
|
|
],
|
|
[
|
|
'name' => '其他',
|
|
'active' => true,
|
|
'submenu' => [
|
|
[
|
|
'name' => '清理缓存',
|
|
'index' => 'setting.cache/clear'
|
|
]
|
|
]
|
|
]
|
|
],
|
|
],
|
|
];
|