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
| export const menu: Record<string,any>[] = [
| {
| "name": "测试",
| "path": "/information-base/Ress",
| "patchName": "Ress",
| "icon": "p",
| "notPage": false
| },
| {
| "name": "HIAWms",
| "path": "/information-base/HIAWms",
| "patchName": "HIAWms",
| "icon": "p",
| "notPage": false
| },
| {
| "name": "API请求",
| "path": "/information-base/Http",
| "patchName": "Http",
| "icon": "p",
| "notPage": false
| }
| ];
| export const menuMap: Record<string,any> = {
| "Ress": {
| "name": "测试",
| "path": "/information-base/Ress",
| "patchName": "Ress",
| "icon": "p",
| "notPage": false
| },
| "HIAWms": {
| "name": "HIAWms",
| "path": "/information-base/HIAWms",
| "patchName": "HIAWms",
| "icon": "p",
| "notPage": false
| },
| "Http": {
| "name": "API请求",
| "path": "/information-base/Http",
| "patchName": "Http",
| "icon": "p",
| "notPage": false
| }
| };
|
|