Skip to content

Commit f941ab6

Browse files
author
tjt01070575
committed
Merge branch 'daily/2023.8.25'
2 parents 5608d60 + b87fd19 commit f941ab6

File tree

4 files changed

+615
-164
lines changed

4 files changed

+615
-164
lines changed

README.md

-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
- 🍊 富文本编辑用的Monaco Editor编辑器
88
- 🥑 Angular-cli v13.2.3
99
- 🚶 不定时更新...
10-
11-
- QQ: 2771289317
12-
- VX: tjt740
1310

1411
# 如何将项目部署到Github Pages上
1512

javascript-tools/src/app/config/menu-config.ts

+63-3
Original file line numberDiff line numberDiff line change
@@ -165,10 +165,40 @@ export const MenuConfig = [
165165
functionName: 'intersectionWithArray',
166166
},
167167
{
168-
exhibitStr: '[Ld]将解构的数组转成JSON对象',
168+
exhibitStr: '[Ld]将解构的数组转成JSON对象1',
169169
router: '/index/util-98',
170170
functionName: 'fromPairs',
171171
},
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+
},
172202
],
173203
},
174204

@@ -237,6 +267,31 @@ export const MenuConfig = [
237267
router: '/index/util-3',
238268
functionName: 'partitionNum',
239269
},
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+
},
240295
],
241296
},
242297

@@ -622,9 +677,14 @@ export const MenuConfig = [
622677
functionName: 'changeColor',
623678
},
624679
{
625-
exhibitStr: '复制功能',
680+
exhibitStr: '复制功能 (1)',
626681
router: '/index/util-93',
627-
functionName: 'copy',
682+
functionName: 'copy1',
683+
},
684+
{
685+
exhibitStr: '复制功能 (2)',
686+
router: '/index/util-104',
687+
functionName: 'copy2',
628688
},
629689
{
630690
exhibitStr:

0 commit comments

Comments
 (0)