From 3f9463258e9430dd9b6a6ae6c7f49a1de4f8265d Mon Sep 17 00:00:00 2001 From: LinCyJang Date: Thu, 7 May 2026 00:51:34 +0800 Subject: [PATCH] =?UTF-8?q?Fix=EF=BC=9A5207=20=E3=80=90=E5=95=86=E5=9F=8E?= =?UTF-8?q?=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91=E5=BC=80=E5=A5=96=E4=BB=A5?= =?UTF-8?q?=E5=90=8E=E6=9C=89=E5=A4=9A=E4=B8=AA=E6=8A=BD=E5=A5=96=E7=A0=81?= =?UTF-8?q?=EF=BC=8C=E9=9C=80=E8=A6=81=E6=8A=8A=E6=89=80=E6=9C=89=E6=8A=BD?= =?UTF-8?q?=E5=A5=96=E7=A0=81=E5=88=97=E5=87=BA=E6=9D=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg-video/views/county-winners.vue | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/pkg-video/views/county-winners.vue b/pkg-video/views/county-winners.vue index 5f68585..68f7316 100644 --- a/pkg-video/views/county-winners.vue +++ b/pkg-video/views/county-winners.vue @@ -58,7 +58,11 @@ - 您的抽奖码 {{ userWinList[0].ticketCode }} 获得了 + 您的抽奖码 + + {{ code }} + + 获得了 @@ -163,6 +167,13 @@ export default { if (this.userWinList.length !== 1) return false const prize = this.userWinList[0] || {} return Number(prize.claimStatus) === 0 + }, + winTicketCodeList() { + const list = (this.userWinList || []) + .map(item => String(item.ticketCode || '').trim()) + .filter(code => !!code) + const uniqList = [...new Set(list)] + return uniqList.length ? uniqList : ['--'] } }, data() {