Files
shoot-miniprograms/src/pages/point-book-create.vue

148 lines
3.7 KiB
Vue
Raw Normal View History

2025-07-29 10:46:37 +08:00
<script setup>
import { ref, onMounted, onUnmounted } from "vue";
import Container from "@/components/Container.vue";
import EditOption from "@/components/EditOption.vue";
import SButton from "@/components/SButton.vue";
2025-08-04 16:28:34 +08:00
import { getPointBookConfigAPI } from "@/apis";
2025-07-29 10:46:37 +08:00
2025-07-30 14:20:38 +08:00
const clickable = ref(false);
2025-07-29 10:46:37 +08:00
const expandIndex = ref(-1);
2025-08-04 16:28:34 +08:00
const bowType = ref({});
2025-07-29 10:46:37 +08:00
const distance = ref(0);
const bowtargetType = ref("");
const amountGroup = ref("");
const onExpandChange = (index, expand) => {
2025-08-04 16:28:34 +08:00
if (expandIndex.value !== -1) {
expandIndex.value = -1;
setTimeout(() => {
expandIndex.value = !expand ? -1 : index;
}, 100);
} else {
expandIndex.value = !expand ? -1 : index;
}
2025-07-29 10:46:37 +08:00
};
const toListPage = () => {
uni.navigateTo({
url: "/pages/point-book-list",
});
};
const onSelect = (itemIndex, value) => {
if (itemIndex === 0) bowType.value = value;
else if (itemIndex === 1) distance.value = value;
else if (itemIndex === 2) bowtargetType.value = value;
else if (itemIndex === 3) amountGroup.value = value;
2025-07-30 17:38:48 +08:00
if (itemIndex < 3) expandIndex.value += 1;
2025-07-29 10:46:37 +08:00
if (
bowType.value &&
distance.value &&
bowtargetType.value &&
amountGroup.value
) {
2025-07-30 14:20:38 +08:00
uni.setStorageSync("point-book", {
bowType: bowType.value,
distance: distance.value,
bowtargetType: bowtargetType.value,
amountGroup: amountGroup.value,
});
2025-07-29 10:46:37 +08:00
clickable.value = true;
}
};
2025-07-30 09:55:15 +08:00
const toEditPage = () => {
2025-08-04 16:28:34 +08:00
expandIndex.value = -1;
2025-07-30 09:55:15 +08:00
uni.navigateTo({
url: "/pages/point-book-edit",
});
};
2025-08-04 16:28:34 +08:00
onMounted(async () => {
const config = await getPointBookConfigAPI();
if (config) {
uni.setStorageSync("point-book-config", config);
}
2025-07-30 17:38:48 +08:00
const pointBook = uni.getStorageSync("point-book");
if (pointBook) {
bowType.value = pointBook.bowType;
distance.value = pointBook.distance;
bowtargetType.value = pointBook.bowtargetType;
}
});
2025-07-29 10:46:37 +08:00
</script>
<template>
<Container
:bgType="2"
bgColor="#F5F5F5"
:whiteBackArrow="false"
title="计分本"
>
<view class="container">
2025-07-30 17:38:48 +08:00
<image
src="https://api.shelingxingqiu.com/attachment/2025-07-30/dbp9r4762kiaqykbpn.png"
mode="widthFix"
/>
2025-07-30 09:55:15 +08:00
<view>
<EditOption
:itemIndex="0"
:expand="expandIndex === 0"
:onExpand="onExpandChange"
:onSelect="onSelect"
2025-08-04 16:28:34 +08:00
:value="bowType.name"
2025-07-30 09:55:15 +08:00
/>
<EditOption
:itemIndex="1"
:expand="expandIndex === 1"
:onExpand="onExpandChange"
:onSelect="onSelect"
2025-07-30 17:38:48 +08:00
:value="distance + ''"
2025-07-30 09:55:15 +08:00
/>
<EditOption
:itemIndex="2"
:expand="expandIndex === 2"
:onExpand="onExpandChange"
:onSelect="onSelect"
2025-08-04 16:28:34 +08:00
:value="bowtargetType.name"
2025-07-30 09:55:15 +08:00
/>
<EditOption
:itemIndex="3"
:expand="expandIndex === 3"
:onExpand="onExpandChange"
:onSelect="onSelect"
/>
</view>
2025-07-29 10:46:37 +08:00
</view>
<view :style="{ marginBottom: '20px' }">
<SButton
:disabled="!clickable"
2025-07-30 09:55:15 +08:00
:onClick="toEditPage"
2025-07-29 10:46:37 +08:00
disabledColor="#DDDDDD"
:color="clickable ? '#000' : '#fff'"
>
开始计分
</SButton>
<view class="see-more" @click="toListPage">
<text>历史计分记录</text>
<image src="../static/enter-arrow-blue.png" mode="widthFix" />
</view>
</view>
</Container>
</template>
<style scoped>
.container {
width: calc(100% - 20px);
padding: 0 15px;
display: flex;
flex-direction: column;
align-items: center;
}
.container > image {
width: 100%;
border: 2px solid #fff;
box-sizing: border-box;
border-radius: 10px;
}
2025-07-30 09:55:15 +08:00
.container > view:nth-child(2) {
margin: 0 10px;
}
2025-07-29 10:46:37 +08:00
</style>