修改算法库

This commit is contained in:
guanj
2025-12-29 20:46:24 +08:00
parent 26ff8087c6
commit 06764c073a
6 changed files with 137 additions and 106 deletions

View File

@@ -61,7 +61,7 @@ const open = (data: any) => {
loading.value = true
show.value = true
setTimeout(() => {
dataList.value = data.sort((a, b) => b.vharmonicbootValue - a.vharmonicbootValue)
dataList.value = data.sort((a, b) => b.vharmonicValue - a.vharmonicValue)
loading.value = false
}, 1000)
}