routes.php
1.18 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
43
<?php
$user = Yii::$app->user->identity;
return [
[
'path' => '/dashboard',
'label' => '欢迎',
],
[
'path' => '/order',
'label' => '维修单',
'routes' => [
[
'path' => '/order',
'redirect' => '/order/repair-order/index'
],
['label' => '维修订单管理', 'path' => '/order/repair-order/index'],
]
],
[
'path' => '/maintainer',
'label' => '维修厂',
'routes' => [
[
'path' => '/maintainer',
'redirect' => '/maintainer/user/index'
],
['label' => '维修厂管理', 'path'=> '/maintainer/user/index'],
]
],
[
'path' => '/system',
'label' => '系统',
'routes' => [
[
'path' => '/system',
'redirect' => '/system/role/index'
],
['label' => '角色管理', 'path' => '/system/role/index'],
['label' => '账号管理', 'path' => '/system/account/index'],
['label' => '系统操作日志', 'path' => '/system/admin-log/index'],
]
]
];