address.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <template>
  2. <view class="item-list">
  3. <view class="item-top">
  4. <view class="name">
  5. {{ itemInfo.name }}
  6. </view>
  7. <text class="phone">
  8. {{ itemInfo.mobile }}
  9. </text>
  10. </view>
  11. <view class="item-content">
  12. {{
  13. itemInfo.province_name +
  14. itemInfo.city_name +
  15. itemInfo.area_name +
  16. itemInfo.address
  17. }}
  18. </view>
  19. <view class="item-bottom">
  20. <view class="item-left" @click="$emit('setDefault', itemInfo)">
  21. <image
  22. v-if="!itemInfo.is_default"
  23. src="../../../static/mine/327.png"
  24. class="address-icon"
  25. mode=""
  26. ></image>
  27. <image
  28. v-else
  29. src="../../../static/mine/330.png"
  30. class="address-icon"
  31. mode=""
  32. ></image>
  33. <text>{{ i18n.initial }}</text>
  34. </view>
  35. <view class="item-right">
  36. <view
  37. class="item-left"
  38. style="margin-right: 24rpx"
  39. @click="$emit('toDetail', itemInfo.id)"
  40. >
  41. <image
  42. src="../../../static/mine/328 .png"
  43. class="address-icon"
  44. mode=""
  45. ></image>
  46. <text>{{ i18n.edit }}</text>
  47. </view>
  48. <view class="item-left" @click="$emit('deleteAddress', itemInfo)">
  49. <image
  50. src="../../../static/mine/329.png"
  51. class="address-icon"
  52. mode=""
  53. ></image>
  54. <text>{{ i18n.delete }}</text>
  55. </view>
  56. </view>
  57. </view>
  58. </view>
  59. </template>
  60. <script>
  61. export default {
  62. name: "address",
  63. data() {
  64. return {};
  65. },
  66. props: {
  67. itemInfo: {
  68. type: Object,
  69. default: {},
  70. },
  71. },
  72. computed: {
  73. i18n() {
  74. return this.$t("index");
  75. },
  76. },
  77. methods: {},
  78. };
  79. </script>
  80. <style scoped lang="scss">
  81. .item-list {
  82. background-color: #fff;
  83. border-radius: 16rpx;
  84. padding: 28rpx 20rpx 0;
  85. margin-bottom: 20rpx;
  86. .item-top {
  87. display: flex;
  88. .name {
  89. margin-right: 16rpx;
  90. font-size: 30rpx;
  91. color: #222;
  92. font-weight: 600;
  93. }
  94. .phone {
  95. opacity: 0.8;
  96. font-size: 26rpx;
  97. color: #222;
  98. line-height: 50rpx;
  99. }
  100. }
  101. .item-content {
  102. margin-top: 16rpx;
  103. font-size: 24rpx;
  104. color: #222;
  105. opacity: 0.7;
  106. margin-bottom: 10rpx;
  107. }
  108. .item-bottom {
  109. display: flex;
  110. justify-content: space-between;
  111. align-items: center;
  112. height: 82rpx;
  113. border-top: 2rpx solid rgba(151, 151, 151, 0.2);
  114. .item-right {
  115. display: flex;
  116. align-items: center;
  117. }
  118. .item-left {
  119. font-size: 24rpx;
  120. color: #222;
  121. opacity: 0.7;
  122. display: flex;
  123. align-items: center;
  124. }
  125. }
  126. .address-icon {
  127. width: 26rpx;
  128. height: 26rpx;
  129. margin-right: 10rpx;
  130. }
  131. }
  132. </style>