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
| export default [
| {
| groupName: '网络',
| groupName_en: 'Network',
| list: [
| {
| path: 'http',
| icon: 'http',
| title: 'Http 请求',
| title_en: 'Http',
| }
| ]
| },
| {
| groupName: '全局变量',
| groupName_en: 'Global variable',
| list: [
| {
| path: 'globalVariable',
| icon: 'globalVariable',
| title: 'GlobalVariable 全局变量',
| title_en: 'GlobalVariable',
| }
| ]
| },
| {
| groupName: '工具库',
| groupName_en: 'Tool library',
| list: [
| {
| path: 'debounce',
| icon: 'debounce',
| title: 'Throttle | Debounce 节流防抖',
| title_en: 'Throttle | Debounce',
| },
| {
| path: 'deepMerge',
| icon: 'deepMerge',
| title: 'DeepMerge 对象深度合并',
| title_en: 'DeepMerge',
| },{
| path: 'deepClone',
| icon: 'deepClone',
| title: 'DeepClone 对象深度克隆',
| title_en: 'DeepClone',
| },
| {
| path: 'timeFormat',
| icon: 'timeFormat',
| title: 'TimeFormat 时间格式化',
| title_en: 'TimeFormat',
| },{
| path: 'timeFrom',
| icon: 'timeFrom',
| title: 'TimeFrom 多久之前',
| title_en: 'TimeFrom',
| },{
| path: 'guid',
| icon: 'guid',
| title: 'Guid 全局唯一id',
| title_en: 'Guid',
| },{
| path: 'route',
| icon: 'route',
| title: 'Route 路由跳转',
| title_en: 'Route',
| },{
| path: 'randomArray',
| icon: 'randomArray',
| title: 'RandomArray 数组乱序',
| title_en: 'RandomArray',
| },{
| path: 'colorSwitch',
| icon: 'colorSwitch',
| title: 'ColorSwitch 颜色转换',
| title_en: 'ColorSwitch',
| },{
| path: 'color',
| icon: 'color',
| title: 'Color 颜色值',
| title_en: 'Color',
| },{
| path: 'queryParams',
| icon: 'queryParams',
| title: 'QueryParams 对象转URL参数',
| title_en: 'QueryParams',
| },{
| path: 'test',
| icon: 'test',
| title: 'Test 规则校验',
| title_en: 'Test',
| },{
| path: 'md5',
| icon: 'md5',
| title: 'Md5 md5加密',
| title_en: 'Md5',
| },{
| path: 'random',
| icon: 'random',
| title: 'Random 随机数值',
| title_en: 'Random',
| },{
| path: 'trim',
| icon: 'trim',
| title: 'Trim 去除空格',
| title_en: 'Trim',
| },{
| path: 'getRect',
| icon: 'getRect',
| title: 'GetRect 节点信息',
| title_en: 'GetRect',
| },{
| path: 'mpShare',
| icon: 'mpShare',
| title: 'MpShare 小程序分享',
| title_en: 'MpShare',
| }
| ]
| }
| ]
|
|