test_lgq/niucloud/addon/test_plug/app/dict/menu/site.php

34 lines
873 B
PHP
Raw Normal View History

2024-01-24 17:36:08 +08:00
<?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' => []
],
]
]
];