34 lines
873 B
PHP
34 lines
873 B
PHP
<?php
|
|
|
|
return [
|
|
[
|
|
'menu_name' => '插件',
|
|
'menu_key' => 'test_plug',
|
|
'menu_type' => 0,
|
|
'icon' => '',
|
|
'api_url' => '',
|
|
'router_path' => 'test_plug',
|
|
'view_path' => '',
|
|
'methods' => '',
|
|
'sort' => 100,
|
|
'status' => 1,
|
|
'is_show' => 1,
|
|
'children' => [
|
|
[
|
|
'menu_name' => '插件',
|
|
'menu_key' => 'test_plug_hello_world',
|
|
'menu_type' => 1,
|
|
'icon' => '',
|
|
'api_url' => 'test_plug/hello_world',
|
|
'router_path' => 'hello_world',
|
|
'view_path' => 'hello_world/index',
|
|
'methods' => 'get',
|
|
'sort' => 100,
|
|
'status' => 1,
|
|
'is_show' => 1,
|
|
'children' => []
|
|
],
|
|
]
|
|
]
|
|
];
|