mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:53:03 +08:00
fix: perfect search modal code
This commit is contained in:
parent
35df1832f4
commit
3b3b964067
@ -101,12 +101,7 @@ function handleArrowup() {
|
|||||||
else
|
else
|
||||||
selectedIndex.value--
|
selectedIndex.value--
|
||||||
|
|
||||||
nextTick(() => {
|
handleScroll(selectedIndex.value)
|
||||||
const distance = selectedIndex.value * 70 > 350 ? selectedIndex.value * 70 - 350 : 0
|
|
||||||
scrollbarRef.value?.scrollTo({
|
|
||||||
top: distance,
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 下箭头操作
|
// 下箭头操作
|
||||||
@ -117,14 +112,19 @@ function handleArrowdown() {
|
|||||||
else
|
else
|
||||||
selectedIndex.value++
|
selectedIndex.value++
|
||||||
|
|
||||||
nextTick(() => {
|
handleScroll(selectedIndex.value)
|
||||||
const distance = selectedIndex.value * 70 > 350 ? selectedIndex.value * 70 - 350 : 0
|
|
||||||
scrollbarRef.value?.scrollTo({
|
|
||||||
top: distance,
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function handleScroll(currentIndex: number) {
|
||||||
|
// 保持6个选项在可视区域内,6个后开始滚动
|
||||||
|
const keepIndex = 5
|
||||||
|
// 单个元素的高度,包括了元素的gap和容器的padding
|
||||||
|
const elHeight = 70
|
||||||
|
const distance = currentIndex * elHeight > keepIndex * elHeight ? currentIndex * elHeight - keepIndex * elHeight : 0
|
||||||
|
scrollbarRef.value?.scrollTo({
|
||||||
|
top: distance,
|
||||||
|
})
|
||||||
|
}
|
||||||
// 回车键操作
|
// 回车键操作
|
||||||
function handleEnter() {
|
function handleEnter() {
|
||||||
const target = options.value[selectedIndex.value]
|
const target = options.value[selectedIndex.value]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user