yz3456
2024-05-28 eb8655f4b9c0df4a6f14805a22131e79dac03654
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
const webMap = {
    "label": "前端",
    "prop": "web",
    "url": 'https://blog.csdn.net/weixin_41192489/category_9421858.html',
    "link": "博客",
    "children":
        [
            {
                "label": "编程语言",
                "prop": "codeType",
                "disabled": true,
                "children":
                    [
                        {
                            "label": "HTML",
                            "prop": "HTML",
                        },
                        {
                            "label": "CSS",
                            "prop": "CSS",
                        },
                        {
                            "label": "Javascript",
                            "prop": "Javascript",
                        },
                    ]
            },
            {
                "label": "JS框架",
                "prop": "jsFrame",
                "disabled": true,
                "children":
                    [
                        {
                            "label": "Vue",
                            "prop": "Vue",
                        },
                        {
                            "label": "React",
                            "prop": "React",
                        },
                        {
                            "label": "Angular",
                            "prop": "Angular",
                            dicType: 'doc'
                        },
                    ]
            },
            {
                "label": "UI框架",
                "prop": "uiFrame",
                "disabled": true,
                "url": '',
                "children":
                    [
                        {
                            "label": "Element UI",
                            "prop": "element_ui",
                            "url": 'https://element.eleme.cn/#/zh-CN/component/i18n',
                            "link": "官网",
                        },
                        {
                            "label": "iview UI",
                            "prop": "iview UI",
                            "url": 'http://v1.iviewui.com/docs/introduce',
                            "link": "官网",
                        },
                        {
                            "label": "layUI",
                            "prop": "layUI",
                            "url": 'https://www.layui.com/doc/',
                            "link": "官网",
                        },
                        {
                            "label": "Ant Design",
                            "prop": "Ant Design",
                            "url": 'https://www.antdv.com/docs/vue/introduce-cn/',
                            "link": "官网",
                        },
                    ]
            },
        ]
}
const serverMap = {
    "label": "后端",
    "prop": "server",
    "url": 'https://blog.csdn.net/weixin_41192489/category_11044490.html',
    "link": "博客",
    "children":
        [
            {
                "label": "编程语言",
                "prop": "codeType",
                disabled:true,
                "children":
                    [
                        {
                            "label": "Node.js",
                            "prop": "nodejs",
                            dicType: 'doc'
                        },
                        {
                            "label": "Java",
                            "prop": "java",
                        },
                    ]
            },
            {
                "label": "框架",
                "prop": "frame",
                disabled:true,
                "children":
                    [
                        {
                            "label": "Koa2",
                            "prop": "koa2",
                        },
                    ]
            },
            {
                "label": "数据库",
                "prop": "database",
                disabled:true,
                "children":
                    [
                        {
                            "label": "Redis",
                            "prop": "Redis",
                            dicType: 'doc'
                        },
                        {
                            "label": "MongoDB",
                            "prop": "MongoDB",
                            dicType: 'doc'
                        },
                        {
                            "label": "MySQL",
                            "prop": "MySQL",
                            dicType: 'doc'
                        },
                    ]
            },
        ]
}
export default {
    webMap, serverMap
}