You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
417 B
15 lines
417 B
<?php
|
|
return [
|
|
'permissions'=>[
|
|
"网站基本权限" => [
|
|
'首页(销售数据)' => '/site/index',
|
|
'用户注销' => '/site/logout',
|
|
'用户登录' => '/site/login',
|
|
],
|
|
"商品模块" => [
|
|
'商品列表' => '/goods/index',
|
|
'商品新增' => '/goods/create',
|
|
'商品修改' => '/goods/update',
|
|
],
|
|
]
|
|
];
|