2025-05-10 16:57:36 +08:00
|
|
|
|
<script setup>
|
2025-07-05 13:12:58 +08:00
|
|
|
|
import { ref, onMounted } from "vue";
|
2025-05-10 16:57:36 +08:00
|
|
|
|
import IconButton from "@/components/IconButton.vue";
|
|
|
|
|
|
import SButton from "@/components/SButton.vue";
|
2025-06-19 21:03:33 +08:00
|
|
|
|
import ScreenHint from "@/components/ScreenHint.vue";
|
2025-06-15 15:53:57 +08:00
|
|
|
|
import BowData from "@/components/BowData.vue";
|
2025-06-21 21:40:31 +08:00
|
|
|
|
import { wxShare } from "@/util";
|
2025-07-05 19:23:38 +08:00
|
|
|
|
import { directionAdjusts } from "@/constants";
|
2025-05-10 16:57:36 +08:00
|
|
|
|
const props = defineProps({
|
|
|
|
|
|
onClose: {
|
|
|
|
|
|
type: Function,
|
|
|
|
|
|
default: () => {},
|
|
|
|
|
|
},
|
2025-07-05 13:12:58 +08:00
|
|
|
|
total: {
|
|
|
|
|
|
type: Number,
|
|
|
|
|
|
default: 0,
|
|
|
|
|
|
},
|
2025-05-10 16:57:36 +08:00
|
|
|
|
rowCount: {
|
|
|
|
|
|
type: Number,
|
|
|
|
|
|
default: 0,
|
|
|
|
|
|
},
|
2025-05-31 14:57:25 +08:00
|
|
|
|
result: {
|
|
|
|
|
|
type: Object,
|
|
|
|
|
|
default: () => ({}),
|
2025-05-29 23:45:44 +08:00
|
|
|
|
},
|
2025-06-28 20:51:50 +08:00
|
|
|
|
tipSrc: {
|
|
|
|
|
|
type: String,
|
|
|
|
|
|
default: "",
|
|
|
|
|
|
},
|
2025-05-10 16:57:36 +08:00
|
|
|
|
});
|
|
|
|
|
|
const showPanel = ref(true);
|
|
|
|
|
|
const showComment = ref(false);
|
2025-06-15 15:53:57 +08:00
|
|
|
|
const showBowData = ref(false);
|
2025-07-05 13:12:58 +08:00
|
|
|
|
const finished = ref(false);
|
2025-07-05 19:23:38 +08:00
|
|
|
|
const totalRing = ref(0);
|
2025-05-10 16:57:36 +08:00
|
|
|
|
const closePanel = () => {
|
|
|
|
|
|
showPanel.value = false;
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
props.onClose();
|
|
|
|
|
|
}, 300);
|
|
|
|
|
|
};
|
2025-07-05 13:12:58 +08:00
|
|
|
|
onMounted(() => {
|
2025-07-05 19:23:38 +08:00
|
|
|
|
if (props.result.arrows) {
|
|
|
|
|
|
totalRing.value = props.result.arrows.reduce(
|
|
|
|
|
|
(last, next) => last + next.ring,
|
|
|
|
|
|
0
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
2025-07-05 13:12:58 +08:00
|
|
|
|
finished.value =
|
|
|
|
|
|
props.result.arrows && props.result.arrows.length === props.total;
|
|
|
|
|
|
});
|
|
|
|
|
|
// setTimeout(() => {
|
|
|
|
|
|
// showPanel.value = true;
|
|
|
|
|
|
// }, 300);
|
2025-05-10 16:57:36 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<template>
|
2025-06-29 12:17:24 +08:00
|
|
|
|
<view v-if="result.arrows" class="container">
|
2025-05-10 16:57:36 +08:00
|
|
|
|
<view :class="['container-header', showPanel ? 'scale-in' : 'scale-out']">
|
2025-06-28 20:51:50 +08:00
|
|
|
|
<image :src="tipSrc" mode="widthFix" />
|
2025-05-10 16:57:36 +08:00
|
|
|
|
<image src="../static/finish-frame.png" mode="widthFix" />
|
2025-05-29 23:45:44 +08:00
|
|
|
|
<text
|
2025-06-29 12:17:24 +08:00
|
|
|
|
>完成<text class="gold-text">{{ result.arrows.length }}</text
|
|
|
|
|
|
>箭,获得<text class="gold-text">{{ result.arrows.length }}</text
|
2025-05-30 17:34:59 +08:00
|
|
|
|
>点经验</text
|
2025-05-29 23:45:44 +08:00
|
|
|
|
>
|
2025-05-10 16:57:36 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
<view
|
|
|
|
|
|
class="container-content"
|
|
|
|
|
|
:style="{ transform: `translateY(${showPanel ? '0%' : '100%'})` }"
|
|
|
|
|
|
>
|
|
|
|
|
|
<view>
|
2025-07-05 19:23:38 +08:00
|
|
|
|
<text>本局成绩(共{{ totalRing }}环):</text>
|
2025-06-15 15:53:57 +08:00
|
|
|
|
<button @click="() => (showBowData = true)">
|
2025-05-10 16:57:36 +08:00
|
|
|
|
<text>查看靶纸</text>
|
|
|
|
|
|
<image
|
|
|
|
|
|
src="../static/enter-arrow-blue.png"
|
|
|
|
|
|
mode="widthFix"
|
|
|
|
|
|
:style="{ width: '20px' }"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view :style="{ gridTemplateColumns: `repeat(${rowCount}, 1fr)` }">
|
2025-07-10 19:55:30 +08:00
|
|
|
|
<view v-for="(_, index) in new Array(total).fill(0)" :key="index">
|
|
|
|
|
|
{{ result.arrows[index] ? result.arrows[index].ring : 0
|
|
|
|
|
|
}}<text>环</text>
|
2025-05-10 16:57:36 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view>
|
2025-07-05 13:12:58 +08:00
|
|
|
|
<block v-if="finished">
|
|
|
|
|
|
<IconButton
|
|
|
|
|
|
name="分享"
|
|
|
|
|
|
src="../static/share.png"
|
|
|
|
|
|
:onClick="wxShare"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<IconButton
|
|
|
|
|
|
name="教练点评"
|
|
|
|
|
|
src="../static/review.png"
|
|
|
|
|
|
:onClick="() => (showComment = true)"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</block>
|
|
|
|
|
|
<SButton
|
|
|
|
|
|
:width="finished ? '70vw' : 'calc(100vw - 20px)'"
|
|
|
|
|
|
:rounded="30"
|
|
|
|
|
|
:onClick="closePanel"
|
|
|
|
|
|
>{{ finished ? "完成" : "重新挑战" }}</SButton
|
|
|
|
|
|
>
|
2025-05-10 16:57:36 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
2025-07-05 19:23:38 +08:00
|
|
|
|
<ScreenHint
|
|
|
|
|
|
:show="showComment"
|
|
|
|
|
|
:onClose="() => (showComment = false)"
|
|
|
|
|
|
mode="tall"
|
|
|
|
|
|
>
|
|
|
|
|
|
<view class="coach-comment">
|
|
|
|
|
|
<text>
|
|
|
|
|
|
您本次练习取得了<text :style="{ color: '#fed847' }">{{
|
|
|
|
|
|
totalRing
|
|
|
|
|
|
}}</text
|
|
|
|
|
|
>环的成绩,所有箭支上靶后的平均点间距为<text
|
|
|
|
|
|
:style="{ color: '#fed847' }"
|
|
|
|
|
|
>{{ Number(result.average_distance.toFixed(2)) }}</text
|
|
|
|
|
|
>,{{
|
|
|
|
|
|
result.spreadEvaluation === "Dispersed"
|
|
|
|
|
|
? "还需要持续改进。"
|
|
|
|
|
|
: "成绩优秀。"
|
|
|
|
|
|
}}
|
|
|
|
|
|
</text>
|
|
|
|
|
|
<text :style="{ marginTop: '12px' }"
|
|
|
|
|
|
>针对您本次的练习,{{
|
|
|
|
|
|
result.spreadEvaluation === "Dispersed"
|
|
|
|
|
|
? "我们建议您充分练习推弓、靠位以及撒放动作一致性,以持续提高成绩。"
|
|
|
|
|
|
: totalRing >= 100
|
|
|
|
|
|
? "我们建议您继续保持即可。"
|
|
|
|
|
|
: `我们建议您将设备的瞄准器${
|
|
|
|
|
|
directionAdjusts[result.adjustmentHint]
|
|
|
|
|
|
}调整。`
|
|
|
|
|
|
}}</text
|
|
|
|
|
|
>
|
|
|
|
|
|
</view>
|
2025-06-19 21:03:33 +08:00
|
|
|
|
</ScreenHint>
|
2025-06-15 15:53:57 +08:00
|
|
|
|
<BowData
|
|
|
|
|
|
:arrows="result.arrows"
|
|
|
|
|
|
:show="showBowData"
|
|
|
|
|
|
:onClose="() => (showBowData = false)"
|
|
|
|
|
|
/>
|
2025-05-10 16:57:36 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
.container {
|
|
|
|
|
|
width: 100vw;
|
|
|
|
|
|
height: 100vh;
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
left: 0;
|
2025-06-20 11:22:41 +08:00
|
|
|
|
background-color: rgba(0, 0, 0, 0.8);
|
2025-06-14 22:45:07 +08:00
|
|
|
|
z-index: 5;
|
2025-05-10 16:57:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
.container-header {
|
|
|
|
|
|
margin-top: 20vh;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
.container-header > text:last-child {
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
text-align: center;
|
2025-06-19 01:55:40 +08:00
|
|
|
|
margin-top: -85px;
|
2025-05-10 16:57:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
.container-content {
|
|
|
|
|
|
width: calc(100vw - 20px);
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
bottom: 0;
|
|
|
|
|
|
border-top-left-radius: 10px;
|
|
|
|
|
|
border-top-right-radius: 10px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
padding: 15px 10px;
|
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
|
}
|
|
|
|
|
|
.container-content > view:first-child {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
2025-06-18 21:30:54 +08:00
|
|
|
|
.container-content > view:first-child > text:first-child {
|
|
|
|
|
|
color: #000;
|
|
|
|
|
|
}
|
2025-05-10 16:57:36 +08:00
|
|
|
|
.container-content > view:first-child > button {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
color: #287fff;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.container-content > view:nth-child(2) {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
row-gap: 10px;
|
|
|
|
|
|
column-gap: 5px;
|
|
|
|
|
|
justify-content: flex-start;
|
2025-07-10 19:55:30 +08:00
|
|
|
|
margin-top: 10px;
|
|
|
|
|
|
margin-bottom: 15px;
|
2025-05-10 16:57:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
.container-content > view:nth-child(2) > view {
|
|
|
|
|
|
background: linear-gradient(#fbfbfb, #f5f5f5);
|
|
|
|
|
|
border: 1px solid #e5e5e5;
|
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
line-height: 27px;
|
|
|
|
|
|
color: #333333;
|
|
|
|
|
|
}
|
|
|
|
|
|
.container-content > view:nth-child(2) > view > text {
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
color: #666666;
|
|
|
|
|
|
margin-left: 3px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.container-content > view:nth-child(3) {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
|
}
|
2025-05-30 17:34:59 +08:00
|
|
|
|
.gold-text {
|
|
|
|
|
|
color: #fed847;
|
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
|
margin: 0 2px;
|
|
|
|
|
|
}
|
2025-07-05 19:23:38 +08:00
|
|
|
|
.coach-comment {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
margin-top: -20px;
|
|
|
|
|
|
}
|
2025-05-10 16:57:36 +08:00
|
|
|
|
</style>
|