This commit is contained in:
kron
2025-10-09 09:30:05 +08:00
parent ce34ca93d1
commit d2ce9f1026
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ onMounted(() => {
<text>{{ data.createAt }}</text>
</view>
<view>
<text>黄心率{{ Number(data.yellowRate * 100) }}%</text>
<text>黄心率{{ Number((data.yellowRate * 100).toFixed(2)) }}%</text>
<text>10环数{{ data.tenRings }}</text>
<text>平均{{ data.averageRing }}</text>
</view>

View File

@@ -7,7 +7,7 @@ import SButton from "@/components/SButton.vue";
import { getPointBookDataAPI } from "@/apis";
const expandIndex = ref(0);
const bowType = ref({});
const bowType = ref("");
const distance = ref(0);
const bowtargetType = ref("");
const amountGroup = ref("");