routes.php
1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
return [
[
'path' => '/dashboard',
'label' => '欢迎',
],
[
'path' => '/user',
'label' => '用户管理',
'routes' => [
[
'path' => '/user',
'redirect' => '/user/user/index'
],
['label' => '用户管理', 'path' => '/user/user/index'],
]
],
[
'path' => '/setting',
'label' => '设置',
'routes' => [
[
'path' => '/setting',
'redirect' => '/setting/wechat/development'
],
['label' => '公众号设置', 'path' => '/setting/wechat/development'],
]
],
[
'path' => '/system',
'label' => '系统',
'routes' => [
[
'path' => '/system',
'redirect' => '/system/role/index'
],
/*['label' => '系统设置', 'path' => '/system/config/set-config'],*/
['label' => '角色管理', 'path' => '/system/role/index'],
['label' => '账号管理', 'path' => '/system/account/index'],
]
]
];