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

@@ -4,7 +4,7 @@ import Container from "@/components/Container.vue";
import EditOption from "@/components/EditOption.vue";
import SButton from "@/components/SButton.vue";
const clickable = ref(true);
const clickable = ref(false);
const expandIndex = ref(-1);
const bowType = ref("");
const distance = ref(0);
@@ -30,6 +30,12 @@ const onSelect = (itemIndex, value) => {
bowtargetType.value &&
amountGroup.value
) {
uni.setStorageSync("point-book", {
bowType: bowType.value,
distance: distance.value,
bowtargetType: bowtargetType.value,
amountGroup: amountGroup.value,
});
clickable.value = true;
}
};