|
@@ -0,0 +1,54 @@
|
|
|
+<?php
|
|
|
+return array
|
|
|
+(
|
|
|
+ 'menu' => array
|
|
|
+ (
|
|
|
+ 'info' => array
|
|
|
+ (
|
|
|
+ 'parent' => 'platform',
|
|
|
+ 'name' => '领域管理',
|
|
|
+ 'icon' => 'archive-drawer-line',
|
|
|
+ 'sort' => '5',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'money' => array
|
|
|
+ (
|
|
|
+ 'parent' => 'platform',
|
|
|
+ 'name' => '货币管理',
|
|
|
+ 'icon' => 'money-cny-box-line',
|
|
|
+ 'sort' => '6',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'express' => array
|
|
|
+ (
|
|
|
+ 'parent' => 'platform',
|
|
|
+ 'name' => '快递管理',
|
|
|
+ 'icon' => 'exchange-funds-fill',
|
|
|
+ 'sort' => '7',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'sector_manage' => array
|
|
|
+ (
|
|
|
+ 'parent' => 'sector',
|
|
|
+ 'name' => '领域管理',
|
|
|
+ 'icon' => 'group-2-line',
|
|
|
+ 'sort' => '100',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'user' => array
|
|
|
+ (
|
|
|
+ 'parent' => 'sector_manage',
|
|
|
+ 'name' => '用户管理',
|
|
|
+ 'icon' => 'user-settings-line',
|
|
|
+ 'sort' => '1',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'role' => array
|
|
|
+ (
|
|
|
+ 'parent' => 'sector_manage',
|
|
|
+ 'name' => '角色管理',
|
|
|
+ 'icon' => 'archive-line',
|
|
|
+ 'sort' => '2',
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+);
|