From 02290615e82e2a2dc5784750fd28430c0cfd926b Mon Sep 17 00:00:00 2001 From: zhangyibo95 <690096405@qq.com> Date: Fri, 26 Jun 2026 11:04:24 +0800 Subject: [PATCH] =?UTF-8?q?update:=E6=95=99=E7=BB=83=E7=82=B9=E8=AF=84?= =?UTF-8?q?=E5=88=A4=E6=96=AD=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ScoreResult.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/components/ScoreResult.vue b/src/components/ScoreResult.vue index 8447ac1..3464483 100644 --- a/src/components/ScoreResult.vue +++ b/src/components/ScoreResult.vue @@ -70,6 +70,11 @@ const arrows = computed(() => { }); const validArrows = computed(() => arrows.value.filter((a) => !!a.ring).length); +const isMember = computed(() => user.value.vip === true || user.value.sVip === true); +const openCoachComment = () => { + if (!isMember.value) return; + showComment.value = true; +};