From 153df11ed4618122dc87bf4d2b686b53d34c2c9e Mon Sep 17 00:00:00 2001 From: linxi <957440651@qq.com> Date: Mon, 11 May 2026 14:57:29 +0800 Subject: [PATCH] =?UTF-8?q?Fix=EF=BC=9A5230=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=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E5=8F=8A=E5=BE=80=E6=9C=9F=E4=B8=AD=E5=A5=96=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=EF=BC=8C=E5=A5=96=E5=93=81=E5=90=8D=E7=A7=B0=E6=94=B9?= =?UTF-8?q?=E4=B8=BA=E4=B8=80=E8=A1=8C=E6=98=BE=E7=A4=BA=EF=BC=8C=E8=B6=85?= =?UTF-8?q?=E5=87=BA=E7=94=A8...?= 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, 11 insertions(+), 2 deletions(-) diff --git a/pkg-video/views/county-winners.vue b/pkg-video/views/county-winners.vue index 028bb85..bce82ac 100644 --- a/pkg-video/views/county-winners.vue +++ b/pkg-video/views/county-winners.vue @@ -85,9 +85,9 @@ {{ prize.levelName }}: - {{ prize.prizeName }} + {{ prize.prizeName }} - {{ prize.prizeDesc || "默认" }} + {{ prize.prizeAttrName || "默认" }} @@ -682,6 +682,8 @@ export default { padding-top: 8rpx; .prize-name-wrap { + display: flex; + align-items: center; font-size: 40rpx; color: #222; margin-bottom: 10rpx; @@ -689,9 +691,16 @@ export default { .prize-level { font-weight: 900; + flex-shrink: 0; } .prize-name { font-weight: 700; + flex: 1; + min-width: 0; + display: block; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; } }