| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- $common = file_exists(__DIR__ . '/common.php') ? require __DIR__ . '/common.php' : [];
- $backend =[
- // ----------------------- 菜单配置 ----------------------- //
- 'config' => [
- // 菜单配置
- 'menu' => [
- 'location' => 'default', // default:系统顶部菜单;addons:应用中心菜单
- 'icon' => 'fa fa-puzzle-piece',
- ],
- // 子模块配置
- 'modules' => [
- ],
- ],
- // ----------------------- 快捷入口 ----------------------- //
- 'cover' => [
- ],
- // ----------------------- 菜单配置 ----------------------- //
- 'menu' => [
- [
- 'title' => '数据概况',
- 'route' => 'default/index',
- 'icon' => '',
- 'params' => [],
- 'child' => [],
- ],
- [
- 'title' => '活动列表',
- 'route' => 'personal/index',
- 'icon' => '',
- 'params' => [],
- 'child' => [],
- ],
- [
- 'title' => '订单明细',
- 'route' => 'financial/index',
- 'icon' => '',
- 'params' => [],
- 'child' => [],
- ],
- [
- 'title' => '基础设置',
- 'route' => 'setting/index',
- 'icon' => '',
- 'params' => [],
- 'child' => [],
- ],
- ],
- ];
- return array_merge($common,$backend);
|