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;
+}
+