From 557fd0dfe36a89e3dd362d44a26b35e25c4fea6c Mon Sep 17 00:00:00 2001 From: LinCyJang Date: Thu, 15 Jan 2026 00:12:20 +0800 Subject: [PATCH] =?UTF-8?q?Fix=EF=BC=9A4216=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=E9=A2=86=E5=8F=96=E7=A4=BC?= =?UTF-8?q?=E5=8C=85=EF=BC=8C=E9=80=89=E6=8B=A9=E6=94=B6=E8=B4=A7=E5=9C=B0?= =?UTF-8?q?=E5=9D=80=E6=97=B6=EF=BC=8C=E5=A2=9E=E5=8A=A0=E4=B8=80=E4=B8=AA?= =?UTF-8?q?=E9=80=89=E4=B8=AD=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/gift/components/AddressList.vue | 23 ++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/pkg_user/views/gift/components/AddressList.vue b/pkg_user/views/gift/components/AddressList.vue index 00b4a4f..69b090e 100644 --- a/pkg_user/views/gift/components/AddressList.vue +++ b/pkg_user/views/gift/components/AddressList.vue @@ -19,6 +19,12 @@ class="address-item" :class="{'active': item.id == activeIndex}" > + + + 收货地址: @@ -130,6 +136,7 @@ export default { .address-item { padding: 20rpx; + position: relative; } .info { @@ -169,7 +176,17 @@ export default { padding: 20rpx 0; } .active{ - background-color: #F5F5F5; - border-radius: 10rpx; + background-color: #FFF5F5; + border-radius: 16rpx; + border: 2rpx solid #C52733; } - \ No newline at end of file +.selected-flag{ + position: absolute; + top: 0; + right: 0; + padding: 6rpx 10rpx 6rpx 14rpx; + border-radius: 0 16rpx 0 16rpx; + background-color: #C52733; + z-index: 9; +} +