This commit is contained in:
kron
2025-07-30 14:20:38 +08:00
parent e963c52e3a
commit f414b34f44
4 changed files with 191 additions and 8 deletions

View File

@@ -78,7 +78,7 @@ const onSelectItem = (index) => {
} else if (props.itemIndex === 3 && secondSelectIndex.value !== -1) {
props.onSelect(
props.itemIndex,
`${selectedIndex.value + 1}/${groupArrows[secondSelectIndex.value]}`
`${selectedIndex.value}/${groupArrows[secondSelectIndex.value]}`
);
}
};
@@ -87,7 +87,7 @@ const onSelectSecondItem = (index) => {
if (selectedIndex.value !== -1) {
props.onSelect(
props.itemIndex,
`${selectedIndex.value + 1}/${groupArrows[secondSelectIndex.value]}`
`${selectedIndex.value}/${groupArrows[secondSelectIndex.value]}`
);
}
};