@@ -165,10 +165,40 @@ export const MenuConfig = [
165
165
functionName : 'intersectionWithArray' ,
166
166
} ,
167
167
{
168
- exhibitStr : '[Ld]将解构的数组转成JSON对象 ' ,
168
+ exhibitStr : '[Ld]将解构的数组转成JSON对象1 ' ,
169
169
router : '/index/util-98' ,
170
170
functionName : 'fromPairs' ,
171
171
} ,
172
+ {
173
+ exhibitStr : '[Ld]将解构的数组转成JSON对象2' ,
174
+ router : '/index/util-105' ,
175
+ functionName : 'zipObject' ,
176
+ } ,
177
+ {
178
+ exhibitStr : '[Ld]把数组中的JSON对象按照条件升序排序' ,
179
+ router : '/index/util-106' ,
180
+ functionName : 'sortBy' ,
181
+ } ,
182
+ {
183
+ exhibitStr : '[Ld]筛选出数组中最小的值' ,
184
+ router : '/index/util-112' ,
185
+ functionName : 'min' ,
186
+ } ,
187
+ {
188
+ exhibitStr : '[Ld]按照条件筛选出数组中最小的值' ,
189
+ router : '/index/util-113' ,
190
+ functionName : 'minBy' ,
191
+ } ,
192
+ {
193
+ exhibitStr : '[Ld]筛选出数组中最大的值' ,
194
+ router : '/index/util-114' ,
195
+ functionName : 'max' ,
196
+ } ,
197
+ {
198
+ exhibitStr : '[Ld]按照条件筛选出数组中最大的值' ,
199
+ router : '/index/util-115' ,
200
+ functionName : 'maxBy' ,
201
+ } ,
172
202
] ,
173
203
} ,
174
204
@@ -237,6 +267,31 @@ export const MenuConfig = [
237
267
router : '/index/util-3' ,
238
268
functionName : 'partitionNum' ,
239
269
} ,
270
+ {
271
+ exhibitStr : '[Ld]数值是否大于其他数值' ,
272
+ router : '/index/util-107' ,
273
+ functionName : 'gt' ,
274
+ } ,
275
+ {
276
+ exhibitStr : '[Ld]数值是否大于或等于其他数值' ,
277
+ router : '/index/util-108' ,
278
+ functionName : 'gte' ,
279
+ } ,
280
+ {
281
+ exhibitStr : '[Ld]数值是否小于其他数值' ,
282
+ router : '/index/util-109' ,
283
+ functionName : 'lt' ,
284
+ } ,
285
+ {
286
+ exhibitStr : '[Ld]数值是否小于或等于其他数值' ,
287
+ router : '/index/util-110' ,
288
+ functionName : 'lte' ,
289
+ } ,
290
+ {
291
+ exhibitStr : '[Ld]数值保留几位小数点' ,
292
+ router : '/index/util-111' ,
293
+ functionName : 'round' ,
294
+ } ,
240
295
] ,
241
296
} ,
242
297
@@ -622,9 +677,14 @@ export const MenuConfig = [
622
677
functionName : 'changeColor' ,
623
678
} ,
624
679
{
625
- exhibitStr : '复制功能' ,
680
+ exhibitStr : '复制功能 (1) ' ,
626
681
router : '/index/util-93' ,
627
- functionName : 'copy' ,
682
+ functionName : 'copy1' ,
683
+ } ,
684
+ {
685
+ exhibitStr : '复制功能 (2)' ,
686
+ router : '/index/util-104' ,
687
+ functionName : 'copy2' ,
628
688
} ,
629
689
{
630
690
exhibitStr :
0 commit comments