2025-07-29 10:46:37 +08:00
|
|
|
|
<script setup>
|
2025-08-25 13:47:32 +08:00
|
|
|
|
import { ref, onMounted } from "vue";
|
2025-08-04 17:54:59 +08:00
|
|
|
|
import { onLoad } from "@dcloudio/uni-app";
|
2025-07-30 09:55:15 +08:00
|
|
|
|
import Container from "@/components/Container.vue";
|
2025-08-05 11:51:09 +08:00
|
|
|
|
import BowTargetEdit from "@/components/BowTargetEdit.vue";
|
2025-07-30 09:55:15 +08:00
|
|
|
|
import ScreenHint2 from "@/components/ScreenHint2.vue";
|
2025-08-05 15:58:43 +08:00
|
|
|
|
import SButton from "@/components/SButton.vue";
|
2025-07-30 09:55:15 +08:00
|
|
|
|
|
2025-08-04 17:54:59 +08:00
|
|
|
|
import { getPointBookDetailAPI } from "@/apis";
|
|
|
|
|
|
|
2025-07-30 09:55:15 +08:00
|
|
|
|
const selectedIndex = ref(0);
|
|
|
|
|
|
const showTip = ref(false);
|
|
|
|
|
|
const showTip2 = ref(false);
|
2025-08-05 11:51:09 +08:00
|
|
|
|
const groups = ref([]);
|
|
|
|
|
|
const data = ref({});
|
2025-08-19 16:48:33 +08:00
|
|
|
|
const targetId = ref("");
|
2025-08-05 11:51:09 +08:00
|
|
|
|
const targetSrc = ref("");
|
|
|
|
|
|
const arrows = ref([]);
|
2025-07-30 09:55:15 +08:00
|
|
|
|
|
|
|
|
|
|
const openTip = (index) => {
|
|
|
|
|
|
if (index === 1) showTip.value = true;
|
|
|
|
|
|
else if (index === 2) showTip2.value = true;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const closeTip = () => {
|
|
|
|
|
|
showTip.value = false;
|
|
|
|
|
|
showTip2.value = false;
|
|
|
|
|
|
};
|
2025-08-05 11:51:09 +08:00
|
|
|
|
|
|
|
|
|
|
const onSelect = (index) => {
|
|
|
|
|
|
selectedIndex.value = index;
|
|
|
|
|
|
data.value = groups.value[index];
|
|
|
|
|
|
arrows.value = groups.value[index].list.filter((item) => item.x && item.y);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-08-05 15:58:43 +08:00
|
|
|
|
const goBack = () => {
|
2025-09-27 10:09:02 +08:00
|
|
|
|
const pages = getCurrentPages();
|
|
|
|
|
|
const currentPage = pages[pages.length - 2];
|
2025-09-24 21:05:06 +08:00
|
|
|
|
uni.navigateBack({
|
2025-09-27 10:09:02 +08:00
|
|
|
|
delta: currentPage.route === "pages/point-book" ? 1 : 2,
|
2025-09-24 21:05:06 +08:00
|
|
|
|
});
|
2025-08-05 15:58:43 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
2025-08-05 11:51:09 +08:00
|
|
|
|
onLoad(async (options) => {
|
|
|
|
|
|
if (options.id) {
|
|
|
|
|
|
const result = await getPointBookDetailAPI(options.id);
|
|
|
|
|
|
const config = uni.getStorageSync("point-book-config");
|
|
|
|
|
|
config.targetOption.some((item) => {
|
|
|
|
|
|
if (item.id === result.targetType) {
|
2025-08-19 16:48:33 +08:00
|
|
|
|
targetId.value = item.id;
|
2025-08-05 11:51:09 +08:00
|
|
|
|
targetSrc.value = item.icon;
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
if (result.groups) {
|
|
|
|
|
|
groups.value = result.groups;
|
|
|
|
|
|
data.value = result.groups[0];
|
|
|
|
|
|
arrows.value = result.groups[0].list.filter((item) => item.x && item.y);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
2025-07-29 10:46:37 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<template>
|
2025-09-24 21:05:06 +08:00
|
|
|
|
<Container
|
|
|
|
|
|
:bgType="2"
|
|
|
|
|
|
bgColor="#F5F5F5"
|
|
|
|
|
|
:whiteBackArrow="false"
|
|
|
|
|
|
title="分析"
|
|
|
|
|
|
:onBack="goBack"
|
|
|
|
|
|
>
|
2025-07-30 09:55:15 +08:00
|
|
|
|
<view class="container">
|
|
|
|
|
|
<view class="tab-bar">
|
|
|
|
|
|
<view
|
2025-08-05 11:51:09 +08:00
|
|
|
|
v-for="(_, index) in groups"
|
2025-07-30 09:55:15 +08:00
|
|
|
|
:key="index"
|
2025-08-05 11:51:09 +08:00
|
|
|
|
@click="onSelect(index)"
|
2025-08-06 18:36:30 +08:00
|
|
|
|
:style="{ borderColor: selectedIndex === index ? '#FED847' : '#fff' }"
|
2025-07-30 09:55:15 +08:00
|
|
|
|
>
|
|
|
|
|
|
<text
|
|
|
|
|
|
:style="{
|
2025-08-06 18:36:30 +08:00
|
|
|
|
color: selectedIndex === index ? '#000' : '#333',
|
2025-07-30 09:55:15 +08:00
|
|
|
|
fontSize: selectedIndex === index ? '15px' : '13px',
|
|
|
|
|
|
letterSpacing: index !== 0 ? '2px' : '0',
|
|
|
|
|
|
}"
|
|
|
|
|
|
>{{ index === 0 ? "全部" : `第${index}组` }}</text
|
|
|
|
|
|
>
|
2025-08-06 18:36:30 +08:00
|
|
|
|
<!-- <image
|
2025-07-30 09:55:15 +08:00
|
|
|
|
src="../static/s-triangle.png"
|
|
|
|
|
|
mode="widthFix"
|
2025-08-05 15:17:19 +08:00
|
|
|
|
:style="{ bottom: selectedIndex !== index ? '0' : '-5px' }"
|
2025-08-06 18:36:30 +08:00
|
|
|
|
/> -->
|
2025-07-30 09:55:15 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="detail-data">
|
|
|
|
|
|
<view>
|
|
|
|
|
|
<view
|
|
|
|
|
|
:style="{ display: 'flex', alignItems: 'center' }"
|
|
|
|
|
|
@click="() => openTip(1)"
|
|
|
|
|
|
>
|
|
|
|
|
|
<text>落点稳定性</text>
|
|
|
|
|
|
<image
|
|
|
|
|
|
src="../static/s-question-mark.png"
|
|
|
|
|
|
mode="widthFix"
|
|
|
|
|
|
class="question-mark"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</view>
|
2025-08-05 11:51:09 +08:00
|
|
|
|
<text>{{ Number((data.stability || 0).toFixed(2)) }}</text>
|
2025-07-30 09:55:15 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
<view>
|
|
|
|
|
|
<view>黄心率</view>
|
2025-08-05 11:51:09 +08:00
|
|
|
|
<text>{{ Number((data.yellowRate * 100).toFixed(2)) }}%</text>
|
2025-07-30 09:55:15 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
<view>
|
|
|
|
|
|
<view>10环数</view>
|
2025-08-05 11:51:09 +08:00
|
|
|
|
<text>{{ data.tenRings }}</text>
|
2025-07-30 09:55:15 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
<view>
|
|
|
|
|
|
<view>平均环数</view>
|
2025-08-05 11:51:09 +08:00
|
|
|
|
<text>{{ Number((data.averageRing || 0).toFixed(2)) }}</text>
|
2025-07-30 09:55:15 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
<view>
|
|
|
|
|
|
<view>总环数</view>
|
2025-08-05 11:51:09 +08:00
|
|
|
|
<text>{{ data.userTotalRing }}/{{ data.totalRing }}</text>
|
2025-07-30 09:55:15 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="title-bar">
|
|
|
|
|
|
<view />
|
|
|
|
|
|
<text>落点分布</text>
|
|
|
|
|
|
<button hover-class="none" @click="() => openTip(2)">
|
|
|
|
|
|
<image
|
|
|
|
|
|
src="../static/s-question-mark.png"
|
|
|
|
|
|
mode="widthFix"
|
|
|
|
|
|
class="question-mark"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</view>
|
2025-08-19 16:48:33 +08:00
|
|
|
|
<BowTargetEdit :id="targetId" :src="targetSrc" :arrows="arrows" />
|
2025-08-05 15:58:43 +08:00
|
|
|
|
<view :style="{ marginTop: '20px' }">
|
|
|
|
|
|
<SButton :onClick="goBack" :rounded="50">关闭</SButton>
|
|
|
|
|
|
</view>
|
2025-07-30 09:55:15 +08:00
|
|
|
|
<ScreenHint2 :show="showTip || showTip2" :onClose="closeTip">
|
|
|
|
|
|
<view class="tip-content">
|
|
|
|
|
|
<block v-if="showTip">
|
|
|
|
|
|
<text>落点稳定性说明</text>
|
|
|
|
|
|
<text
|
2025-08-20 16:04:17 +08:00
|
|
|
|
>通过计算每支箭与其他箭的平均距离衡一量射箭的稳定性,数字越小则说明射箭越稳定。该数据只能在用户标记落点的情况下生成。</text
|
2025-07-30 09:55:15 +08:00
|
|
|
|
>
|
|
|
|
|
|
</block>
|
|
|
|
|
|
<block v-if="showTip2">
|
|
|
|
|
|
<text>落点分布说明</text>
|
2025-08-20 16:04:17 +08:00
|
|
|
|
<text>展示用户某次练习中射箭的点位</text>
|
2025-07-30 09:55:15 +08:00
|
|
|
|
</block>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</ScreenHint2>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</Container>
|
2025-07-29 10:46:37 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
2025-07-30 09:55:15 +08:00
|
|
|
|
<style scoped>
|
|
|
|
|
|
.container {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
.tab-bar {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
width: clac(100% - 20px);
|
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
|
padding: 0 10px;
|
2025-08-07 11:04:12 +08:00
|
|
|
|
margin-top: 10px;
|
2025-07-30 09:55:15 +08:00
|
|
|
|
}
|
|
|
|
|
|
.tab-bar::-webkit-scrollbar {
|
|
|
|
|
|
width: 0;
|
|
|
|
|
|
height: 0;
|
|
|
|
|
|
color: transparent;
|
|
|
|
|
|
}
|
|
|
|
|
|
.tab-bar > view {
|
2025-08-06 18:36:30 +08:00
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
border: 2px solid #fff;
|
2025-07-30 09:55:15 +08:00
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
width: 24vw;
|
|
|
|
|
|
height: 13vw;
|
|
|
|
|
|
line-height: 13vw;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
margin: 5px;
|
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
.tab-bar > view > text {
|
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
.tab-bar > view > image {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
width: 14px;
|
|
|
|
|
|
height: 4px;
|
|
|
|
|
|
left: calc(50% - 7px);
|
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
.detail-data {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
|
|
column-gap: 3vw;
|
|
|
|
|
|
margin: 10px 15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.detail-data > view {
|
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
padding: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.detail-data > view > view {
|
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
color: #999;
|
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
}
|
2025-08-05 15:58:43 +08:00
|
|
|
|
.detail-data > view > text {
|
|
|
|
|
|
font-weight: 500;
|
2025-09-22 14:55:00 +08:00
|
|
|
|
color: #000;
|
2025-08-05 15:58:43 +08:00
|
|
|
|
}
|
2025-07-30 09:55:15 +08:00
|
|
|
|
.question-mark {
|
|
|
|
|
|
width: 15px;
|
|
|
|
|
|
height: 15px;
|
|
|
|
|
|
margin-left: 3px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.title-bar {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
color: #999;
|
|
|
|
|
|
}
|
|
|
|
|
|
.title-bar > view:first-child {
|
|
|
|
|
|
width: 5px;
|
|
|
|
|
|
height: 15px;
|
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
background-color: #fed847;
|
|
|
|
|
|
margin-right: 7px;
|
|
|
|
|
|
margin-left: 15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.title-bar > text {
|
|
|
|
|
|
margin-bottom: 2px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.tip-content {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
padding: 25px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
}
|
|
|
|
|
|
.tip-content > text {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
.tip-content > text:first-child {
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
.tip-content > text:last-child {
|
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
|
opacity: 0.8;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|