routes.php
1.84 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
use domain\upgrade\UpgradeStatus;
$user = Yii::$app->user->identity;
if (isset($user->is_manufacture) && $user->is_manufacture == 1) {
return [
[
'path' => '/dashboard',
'label' => '欢迎',
],
[
'path' => '/upgrade',
'label' => '版本',
'routes' => [
[
'path' => '/upgrade',
'redirect' => '/upgrade/upgrade/index'
],
['label' => '版本管理', 'path'=> '/upgrade/upgrade/index'],
]
],
[
'path' => '/myself',
'label' => '账号',
'routes' => [
[
'path' => '/myself',
'redirect' => '/my/default/my-index'
],
['label' => '账号管理', 'path'=> '/my/default/my-index'],
['label' => '修改密码', 'path'=> '/my/default/password'],
]
]
];
} else {
return [
[
'path' => '/dashboard',
'label' => '欢迎',
],
[
'path' => '/user',
'label' => '用户管理',
'routes' => [
[
'path' => '/user',
'redirect' => '/user/user/index'
],
['label' => '用户管理', 'path' => '/user/user/index'],
]
],
[
'path' => '/system',
'label' => '系统',
'routes' => [
[
'path' => '/system',
'redirect' => '/system/role/index'
],
['label' => '角色管理', 'path' => '/system/role/index'],
['label' => '账号管理', 'path' => '/system/account/index'],
]
]
];
}