-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsidebar.ts
301 lines (299 loc) · 7.38 KB
/
sidebar.ts
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
export default {
'/components': [
{
children: [
{
title: '组件总览',
link: '/components',
},
],
},
{
title: '基础组件',
children: [
{
title: 'LCaptchaButton-按钮倒计时',
link: '/components/captcha-button',
},
{
title: 'LFileViewer-文件预览器',
link: '/components/file-viewer',
},
{
title: 'LNumberRoll-数值加载器',
link: '/components/number-roll',
},
{
title: 'LTrigger-弹出选择',
link: '/components/trigger',
},
{
title: 'LCardGroup-卡片选择',
link: '/components/card-group',
},
{
title: 'LTagGroup-标签选择',
link: '/components/tag-group',
},
{
title: 'LSliderVerify-前端滑块验证',
link: '/components/slider-verify',
},
{
title: 'LTianaiCaptcha-高级滑块验证',
link: '/components/Tianai-Captcha',
},
{
title: 'LRightMenu-右键菜单',
link: '/components/Right-Menu',
},
{
title: 'LColor-颜色选择',
link: '/components/color-pick',
},
],
},
{
title: '数据展示',
children: [
{
title: 'LECharts-echarts容器组件',
link: '/components/Echarts',
},
{
title: 'LTable-高级表格',
link: '/components/table',
},
{
title: 'LEditTable-高级编辑表格',
link: '/components/edit-table',
},
{
title: 'LDescriptions-高级描述列表',
link: '/components/descriptions',
},
{
title: 'LList-高级列表',
link: '/components/list',
},
{
title: 'LSeamlessScroll-无缝滚动',
link: '/components/seamless-scroll',
},
{
title: 'LCollapseCard-折叠卡片',
link: '/components/collapse-card',
},
{
title: 'LScrollBar-滚动条',
link: '/components/scroll-bar',
},
{
title: 'LTreeTable-树表格',
link: '/components/tree-table',
},
{
title: 'LH5Preview-H5预览',
link: '/components/h5-preview',
},
{
title: 'LEllipsisText-文本省略',
link: '/components/Ellipsis-Text',
},
{
title: 'LHighlightText-文本高亮',
link: '/components/Highlight-Text',
},
{
title: 'LSkeleton-高级骨架屏',
link: '/components/Skeleton',
},
],
},
{
title: '高级表单',
children: [
{
title: 'LForm-高级表单',
link: '/components/form',
},
{
title: 'LModalForm-高级弹窗表单',
link: '/components/modal-form',
},
{
title: 'LDrawerForm-高级抽屉表单',
link: '/components/drawer-form',
},
{
title: 'LQueryForm-高级查询表单',
link: '/components/query-form',
},
{
title: 'LStepsForm-高级步骤表单',
link: '/components/steps-form',
},
{
title: 'LLoginForm-高级登录表单',
link: '/components/login-form',
},
{
title: 'LListForm-高级动态表单项',
link: '/components/list-form',
},
],
},
{
title: '高级表单项',
children: [
{
title: 'LFormItem-高级表单项',
link: '/components/form-item',
},
{
title: 'Input-输入框',
link: '/components/form-item-input',
},
{
title: 'Number-数字输入框',
link: '/components/form-item-number',
},
{
title: 'NumberRange-数字范围输入框',
link: '/components/form-item-number-range',
},
{
title: 'Password-密码输入框',
link: '/components/form-item-password',
},
{
title: 'TextArea-多行输入框',
link: '/components/form-item-text-area',
},
{
title: 'Captcha-验证码输入框',
link: '/components/form-item-captcha',
},
{
title: 'AutoComplete-联想输入框',
link: '/components/form-item-auto-complete',
},
{
title: 'Mentions-提及输入框',
link: '/components/form-item-mentions',
},
{
title: 'Select-下拉框',
link: '/components/form-item-select',
},
{
title: 'Checkbox-多选框',
link: '/components/form-item-checkbox',
},
{
title: 'Radio-单选框',
link: '/components/form-item-radio',
},
{
title: 'Cascader-级联选择',
link: '/components/form-item-cascader',
},
{
title: 'TreeSelect-树形选择',
link: '/components/form-item-tree-select',
},
{
title: 'Address-组合选择',
link: '/components/form-item-address',
},
{
title: 'Color-颜色选择',
link: '/components/form-item-color',
},
{
title: 'Switch-开关选择',
link: '/components/form-item-switch',
},
{
title: 'DatePicker-日期选择',
link: '/components/form-item-date-picker',
},
{
title: 'TimePicker-时间选择',
link: '/components/form-item-time-picker',
},
{
title: 'Slider-滑动条选择',
link: '/components/form-item-slider',
},
{
title: 'Icon-图标选择',
link: '/components/form-item-icon',
},
{
title: 'Segmented-分段器选择',
link: '/components/form-item-segmented',
},
{
title: 'Rate-评分选择',
link: '/components/form-item-rate',
},
{
title: 'Upload-文件上传',
link: '/components/form-item-upload',
},
{
title: 'Transfer-穿梭框',
link: '/components/form-item-transfer',
},
],
},
// {
// title: 'Hooks',
// children: [
// {
// title: 'useShow-父子组件传参',
// link: '/components/use-Show',
// },
// {
// title: 'useCallbackState-状态更新回调',
// link: '/components/use-callback-state',
// },
// ],
// },
],
'/scene': [
{
children: [
{
title: '场景案例',
link: '/scene',
},
],
},
{
children: [
{
title: '表格数据的导出',
link: '/scene/table-Export',
},
{
title: '解析 Excel 数据成 JSON',
link: '/scene/excel-Import',
},
{
title: 'Mock 模拟数据',
link: '/scene/mockjs',
},
{
title: '下载文件',
link: '/scene/download',
},
{
title: '大屏适配',
link: '/scene/big-Screen',
},
],
},
],
};