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

567 lines
14 KiB
Vue
Raw Normal View History

2025-07-29 10:46:37 +08:00
<script setup>
2025-10-11 09:06:56 +08:00
import { ref, onMounted, computed } from "vue";
2025-11-04 14:18:44 +08:00
import { onLoad, onShareAppMessage, onShareTimeline } 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-10-11 09:06:56 +08:00
import RingBarChart from "@/components/RingBarChart.vue";
2025-07-30 09:55:15 +08:00
2025-11-04 11:54:22 +08:00
import { getPointBookDetailAPI, addNoteAPI } from "@/apis";
2025-11-04 17:41:50 +08:00
import { wxShare, generateShareCard, generateShareImage } from "@/util";
2025-11-04 16:49:56 +08:00
import useStore from "@/store";
import { storeToRefs } from "pinia";
const store = useStore();
const { user, device } = storeToRefs(store);
2025-08-04 17:54:59 +08:00
2025-07-30 09:55:15 +08:00
const selectedIndex = ref(0);
const showTip = ref(false);
const showTip2 = ref(false);
2025-11-04 11:54:22 +08:00
const showTip3 = ref(false);
2025-08-05 11:51:09 +08:00
const data = ref({});
2025-10-11 09:06:56 +08:00
const targetId = ref(0);
2025-08-05 11:51:09 +08:00
const targetSrc = ref("");
const arrows = ref([]);
2025-11-04 11:54:22 +08:00
const notes = ref("");
2025-11-04 16:49:56 +08:00
const record = ref({
groups: [],
2025-11-04 17:41:50 +08:00
user: {},
2025-11-04 16:49:56 +08:00
});
2025-11-04 17:41:50 +08:00
const shareType = ref(1);
2025-07-30 09:55:15 +08:00
const openTip = (index) => {
if (index === 1) showTip.value = true;
else if (index === 2) showTip2.value = true;
2025-11-04 11:54:22 +08:00
else if (index === 3) showTip3.value = true;
2025-07-30 09:55:15 +08:00
};
const closeTip = () => {
showTip.value = false;
showTip2.value = false;
2025-11-04 11:54:22 +08:00
showTip3.value = false;
};
const saveNote = async () => {
2025-11-12 20:40:00 +08:00
if (record.value.id && notes.value) {
if (record.value.remark !== notes.value) {
await addNoteAPI(record.value.id, notes.value);
}
showTip3.value = false;
2025-11-04 11:54:22 +08:00
}
2025-07-30 09:55:15 +08:00
};
2025-08-05 11:51:09 +08:00
const onSelect = (index) => {
selectedIndex.value = index;
2025-11-04 16:49:56 +08:00
data.value = record.value.groups[index];
arrows.value = record.value.groups[index].list.filter(
(item) => item.x && item.y
);
2025-08-05 11:51:09 +08:00
};
2025-08-05 15:58:43 +08:00
const goBack = () => {
2025-09-27 10:09:02 +08:00
const pages = getCurrentPages();
2025-11-04 16:49:56 +08:00
if (pages.length > 1) {
const currentPage = pages[pages.length - 2];
uni.navigateBack({
delta: currentPage.route === "pages/point-book" ? 1 : 2,
});
} else {
uni.redirectTo({
url: "/pages/index",
});
}
2025-08-05 15:58:43 +08:00
};
2025-10-11 09:06:56 +08:00
const ringRates = computed(() => {
const rates = new Array(12).fill(0);
arrows.value.forEach((item) => {
if (item.ring === -1) rates[11] += 1;
else rates[item.ring] += 1;
});
return rates.map((r) => r / arrows.value.length);
});
2025-11-04 17:41:50 +08:00
const loading = ref(false);
const shareImage = async () => {
if (loading.value) return;
loading.value = true;
await generateShareImage("shareImageCanvas", record.value);
2025-11-04 17:41:50 +08:00
await wxShare("shareImageCanvas");
loading.value = false;
};
2025-08-05 11:51:09 +08:00
onLoad(async (options) => {
if (options.id) {
const result = await getPointBookDetailAPI(options.id || 222);
2025-11-04 16:49:56 +08:00
record.value = result;
2025-11-04 11:54:22 +08:00
notes.value = result.remark || "";
2025-08-05 11:51:09 +08:00
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) {
data.value = result.groups[0];
2025-10-11 09:06:56 +08:00
arrows.value = result.groups[0].list;
2025-08-05 11:51:09 +08:00
}
}
});
2025-11-04 14:18:44 +08:00
2025-11-04 16:49:56 +08:00
onShareAppMessage(async () => {
2025-11-05 09:36:37 +08:00
const imageUrl = await generateShareCard(
2025-11-04 17:41:50 +08:00
"shareCardCanvas",
2025-11-04 16:49:56 +08:00
record.value.recordDate,
data.value.userTotalRing,
data.value.totalRing
);
2025-11-04 14:18:44 +08:00
return {
title: "射箭打卡,今日又精进了一些~",
2025-11-05 09:36:37 +08:00
path: "/pages/point-book-detail-share?id=" + record.value.id,
2025-11-04 16:49:56 +08:00
imageUrl,
2025-11-04 14:18:44 +08:00
};
});
2025-11-04 16:49:56 +08:00
onShareTimeline(async () => {
2025-11-05 09:36:37 +08:00
const imageUrl = await generateShareCard(
2025-11-04 17:41:50 +08:00
"shareCardCanvas",
2025-11-04 16:49:56 +08:00
record.value.recordDate,
data.value.userTotalRing,
data.value.totalRing
);
2025-11-04 14:18:44 +08:00
return {
title: "射箭打卡,今日又精进了一些~",
2025-11-04 16:49:56 +08:00
query: "id=" + record.value.id,
imageUrl,
2025-11-04 14:18:44 +08:00
};
});
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"
2025-11-04 16:49:56 +08:00
title=""
2025-09-24 21:05:06 +08:00
:onBack="goBack"
>
2025-07-30 09:55:15 +08:00
<view class="container">
2025-11-04 14:18:44 +08:00
<!-- <view class="tab-bar">
2025-07-30 09:55:15 +08:00
<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
>
</view>
2025-11-04 14:18:44 +08:00
</view> -->
2025-11-04 16:49:56 +08:00
<canvas
class="share-canvas"
2025-11-04 17:41:50 +08:00
canvas-id="shareCardCanvas"
2025-11-04 16:49:56 +08:00
style="width: 375px; height: 300px"
></canvas>
2025-11-04 17:41:50 +08:00
<canvas
class="share-canvas"
canvas-id="shareImageCanvas"
style="width: 375px; height: 860px"
></canvas>
2025-07-30 09:55:15 +08:00
<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>
2025-11-04 16:49:56 +08:00
<button
hover-class="none"
@click="() => openTip(3)"
2025-11-04 17:41:50 +08:00
v-if="user.id === record.user.id"
2025-11-04 16:49:56 +08:00
>
2025-11-12 20:40:00 +08:00
<image
:src="`../static/${notes ? 'has' : 'add'}-note.png`"
mode="widthFix"
/>
<text>{{ notes ? "我的备注" : "添加备注" }}</text>
2025-11-04 11:54:22 +08:00
</button>
2025-07-30 09:55:15 +08:00
</view>
<view class="title-bar">
<view />
<text>落点分布</text>
2025-11-04 14:18:44 +08:00
<!-- <button hover-class="none" @click="() => openTip(2)">
2025-07-30 09:55:15 +08:00
<image
src="../static/s-question-mark.png"
mode="widthFix"
class="question-mark"
/>
2025-11-04 14:18:44 +08:00
</button> -->
2025-07-30 09:55:15 +08:00
</view>
2025-11-12 20:40:00 +08:00
<view :style="{ transform: 'translateY(-64rpx) scale(0.9)' }">
2025-10-21 15:13:22 +08:00
<BowTargetEdit
:id="targetId"
:src="targetSrc"
:arrows="arrows.filter((item) => item.x && item.y)"
2025-11-12 20:40:00 +08:00
:scroll="false"
2025-10-21 15:13:22 +08:00
/>
2025-10-11 09:06:56 +08:00
</view>
2025-11-12 20:40:00 +08:00
<view :style="{ transform: 'translateY(-100rpx)' }">
2025-11-04 14:18:44 +08:00
<!-- <view class="title-bar">
2025-10-21 15:13:22 +08:00
<view />
<text>环值分布</text>
2025-11-04 14:18:44 +08:00
</view> -->
2025-10-21 15:13:22 +08:00
<view :style="{ padding: '0 30rpx' }">
<RingBarChart :data="ringRates" />
</view>
2025-11-04 14:18:44 +08:00
<!-- <view class="title-bar" :style="{ marginTop: '30rpx' }">
2025-10-21 15:13:22 +08:00
<view />
<text>{{
selectedIndex === 0 ? "每组环数" : `${selectedIndex}组环数`
2025-10-11 09:06:56 +08:00
}}</text>
2025-11-04 14:18:44 +08:00
</view> -->
2025-10-21 15:13:22 +08:00
<view class="ring-text-groups">
2025-11-04 16:49:56 +08:00
<view v-for="(item, index) in record.groups" :key="index">
2025-11-04 11:54:22 +08:00
<view v-if="selectedIndex === 0 && index !== 0">
<text>{{ index }}</text>
2025-11-05 09:36:37 +08:00
<text>{{ item.userTotalRing }}</text>
2025-11-04 11:54:22 +08:00
<text></text>
</view>
2025-10-21 15:13:22 +08:00
<view
v-if="
(selectedIndex === 0 && index !== 0) ||
(selectedIndex !== 0 && index === selectedIndex)
"
2025-10-11 09:06:56 +08:00
>
2025-10-21 15:13:22 +08:00
<text
v-for="(arrow, index2) in item.list"
:key="index2"
:style="{
color:
arrow.ring === 0 || arrow.ring === 10 ? '#FFA118' : '#666',
}"
>
{{
2025-11-04 11:54:22 +08:00
arrow.ring === 0 ? "X" : arrow.ring === -1 ? "M" : arrow.ring
2025-10-21 15:13:22 +08:00
}}
</text>
</view>
2025-10-11 09:06:56 +08:00
</view>
</view>
2025-11-04 16:49:56 +08:00
<view
class="btns"
:style="{
gridTemplateColumns: `repeat(${
2025-11-04 17:41:50 +08:00
user.id === record.user.id ? 1 : 1
2025-11-04 16:49:56 +08:00
}, 1fr)`,
}"
>
2025-11-04 14:18:44 +08:00
<button hover-class="none" @click="goBack">关闭</button>
2025-11-04 17:41:50 +08:00
<!-- <button
2025-11-04 16:49:56 +08:00
hover-class="none"
2025-11-04 17:41:50 +08:00
@click="shareImage"
v-if="user.id === record.user.id"
2025-11-04 16:49:56 +08:00
>
分享
2025-11-04 17:41:50 +08:00
</button> -->
2025-10-21 15:13:22 +08:00
</view>
2025-08-05 15:58:43 +08:00
</view>
2025-11-12 20:40:00 +08:00
<ScreenHint2 :show="showTip || showTip2 || showTip3" :onClose="closeTip">
2025-07-30 09:55:15 +08:00
<view class="tip-content">
<block v-if="showTip">
<text>落点稳定性说明</text>
<text
2025-11-05 13:38:37 +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>
2025-11-04 11:54:22 +08:00
<block v-if="showTip3">
2025-11-04 16:49:56 +08:00
<text>备注</text>
2025-11-04 11:54:22 +08:00
<textarea
2025-11-11 10:56:53 +08:00
v-model="notes"
2025-11-04 16:49:56 +08:00
maxlength="300"
2025-11-12 20:40:00 +08:00
rows="3"
2025-11-04 11:54:22 +08:00
class="notes-input"
placeholder="写下本次射箭的补充信息与心得"
placeholder-style="color: #ccc;"
/>
2025-11-11 10:56:53 +08:00
<view>
2025-11-12 20:40:00 +08:00
<button
hover-class="none"
@click="saveNote"
:class="notes ? '' : 'button-disabled'"
>
保存备注
</button>
2025-11-04 11:54:22 +08:00
</view>
</block>
2025-07-30 09:55:15 +08:00
</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;
2025-10-21 15:13:22 +08:00
height: 80rpx;
2025-07-30 09:55:15 +08:00
text-align: center;
margin: 5px;
margin-top: 0;
font-size: 14px;
flex: 0 0 auto;
position: relative;
}
.tab-bar > view > text {
2025-10-21 15:13:22 +08:00
line-height: 80rpx;
2025-07-30 09:55:15 +08:00
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;
2025-10-21 15:13:22 +08:00
margin: 10rpx 30rpx;
2025-11-04 14:18:44 +08:00
margin-top: 20rpx;
2025-07-30 09:55:15 +08:00
}
2025-11-04 11:54:22 +08:00
.detail-data > view,
.detail-data > button {
2025-07-30 09:55:15 +08:00
border-radius: 10px;
background-color: #fff;
2025-10-11 09:06:56 +08:00
margin-bottom: 20rpx;
2025-10-21 15:13:22 +08:00
padding: 15rpx 24rpx;
2025-07-30 09:55:15 +08:00
}
.detail-data > view > view {
font-size: 13px;
color: #999;
2025-10-21 15:13:22 +08:00
margin-bottom: 6rpx;
2025-10-11 09:06:56 +08:00
}
.detail-data > view > view > text {
word-break: keep-all;
2025-07-30 09:55:15 +08:00
}
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-11-04 11:54:22 +08:00
.detail-data > button {
display: flex;
2025-11-12 20:40:00 +08:00
flex-direction: column;
justify-content: space-around;
2025-11-04 11:54:22 +08:00
align-items: center;
2025-11-12 20:40:00 +08:00
font-size: 24rpx;
color: #333333;
2025-11-04 11:54:22 +08:00
}
.detail-data > button > image {
2025-11-12 20:40:00 +08:00
width: 44rpx;
height: 44rpx;
2025-11-04 11:54:22 +08:00
}
2025-07-30 09:55:15 +08:00
.question-mark {
2025-10-11 09:06:56 +08:00
width: 28rpx;
height: 28rpx;
2025-07-30 09:55:15 +08:00
margin-left: 3px;
}
.title-bar {
width: 100%;
display: flex;
align-items: center;
font-size: 13px;
color: #999;
2025-10-21 15:13:22 +08:00
position: relative;
z-index: 10;
2025-07-30 09:55:15 +08:00
}
.title-bar > view:first-child {
2025-10-11 09:06:56 +08:00
width: 8rpx;
height: 28rpx;
2025-07-30 09:55:15 +08:00
border-radius: 10px;
background-color: #fed847;
margin-right: 7px;
margin-left: 15px;
}
2025-10-11 09:06:56 +08:00
.title-bar > button {
height: 34rpx;
2025-07-30 09:55:15 +08:00
}
.tip-content {
width: 100%;
2025-11-05 13:38:37 +08:00
padding: 50rpx 44rpx;
2025-07-30 09:55:15 +08:00
display: flex;
flex-direction: column;
2025-10-21 15:13:22 +08:00
color: #000;
2025-11-05 09:36:37 +08:00
overflow: hidden;
2025-07-30 09:55:15 +08:00
}
.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;
}
2025-11-04 11:54:22 +08:00
.tip-content > view {
width: 100%;
display: flex;
align-items: center;
2025-11-12 20:40:00 +08:00
justify-content: center;
2025-11-04 11:54:22 +08:00
}
.tip-content > view > input {
width: 80%;
height: 44px;
border-radius: 22px;
border: 1px solid #eeeeee;
padding: 0 12px;
font-size: 14px;
color: #000;
}
.tip-content > view > button {
width: 48%;
2025-11-12 20:40:00 +08:00
border-radius: 44rpx;
2025-11-04 11:54:22 +08:00
padding: 12px 0;
font-size: 14px;
color: #000;
background: #fed847;
}
2025-11-12 20:40:00 +08:00
.button-disabled {
background: linear-gradient(180deg, #fbfbfb 0%, #f5f5f5 100%) !important;
color: #ccc !important;
}
2025-10-11 09:06:56 +08:00
.ring-text-groups {
display: flex;
flex-direction: column;
padding: 20rpx;
2025-11-12 20:40:00 +08:00
padding-top: 50rpx;
2025-10-11 09:06:56 +08:00
font-size: 24rpx;
color: #999999;
}
.ring-text-groups > view {
display: flex;
justify-content: center;
}
2025-11-04 11:54:22 +08:00
.ring-text-groups > view > view:first-child:nth-last-child(2) {
2025-11-05 17:53:48 +08:00
margin-top: 10rpx;
2025-11-12 20:40:00 +08:00
width: 115rpx;
2025-10-11 09:06:56 +08:00
text-align: center;
2025-11-12 20:40:00 +08:00
justify-content: flex-start;
2025-11-04 11:54:22 +08:00
font-size: 20rpx;
display: flex;
color: #999;
}
.ring-text-groups > view > view:first-child:nth-last-child(2) > text {
line-height: 30rpx;
}
.ring-text-groups
> view
> view:first-child:nth-last-child(2)
> text:nth-child(2) {
2025-11-12 20:40:00 +08:00
font-size: 28rpx;
2025-11-04 11:54:22 +08:00
color: #666;
margin-right: 6rpx;
2025-11-04 14:18:44 +08:00
margin-top: -5rpx;
2025-11-12 20:40:00 +08:00
font-weight: 500;
2025-10-11 09:06:56 +08:00
}
2025-11-04 11:54:22 +08:00
.ring-text-groups > view > view:last-child {
2025-11-05 13:38:37 +08:00
width: 80%;
display: flex;
flex-wrap: wrap;
2025-10-11 09:06:56 +08:00
margin-bottom: 30rpx;
}
2025-11-04 11:54:22 +08:00
.ring-text-groups > view > view:last-child > text {
2025-11-05 13:38:37 +08:00
width: 16.6%;
2025-10-11 09:06:56 +08:00
text-align: center;
margin-bottom: 10rpx;
2025-11-05 09:36:37 +08:00
font-weight: 500;
font-size: 26rpx;
2025-10-11 09:06:56 +08:00
}
2025-11-04 11:54:22 +08:00
.notes-input {
width: calc(100% - 40rpx);
2025-11-05 09:36:37 +08:00
min-width: calc(100% - 40rpx);
2025-11-04 11:54:22 +08:00
margin: 25rpx 0;
border: 1px solid #eee;
border-radius: 5px;
padding: 5px;
color: #000;
padding: 20rpx;
}
2025-11-04 14:18:44 +08:00
.btns {
margin-bottom: 40rpx;
2025-11-04 16:49:56 +08:00
display: grid;
2025-11-04 14:18:44 +08:00
align-items: center;
justify-content: center;
2025-11-04 16:49:56 +08:00
column-gap: 20rpx;
padding: 0 20rpx;
2025-11-04 14:18:44 +08:00
}
.btns > button {
height: 84rpx;
line-height: 84rpx;
background: linear-gradient(180deg, #fbfbfb 0%, #f5f5f5 100%), #ffffff;
border-radius: 44rpx;
border: 2rpx solid #eeeeee;
2025-11-04 16:49:56 +08:00
box-sizing: border-box;
2025-11-04 14:18:44 +08:00
font-weight: 500;
font-size: 30rpx;
color: #000000;
}
2025-11-04 16:49:56 +08:00
.btns > button:nth-child(2) {
2025-11-04 14:18:44 +08:00
background: #fed847;
2025-11-04 16:49:56 +08:00
border: none;
2025-11-04 14:18:44 +08:00
}
2025-07-30 09:55:15 +08:00
</style>