s-address-item.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <!-- 地址卡片 -->
  2. <template>
  3. <view
  4. class="address-item ss-flex ss-row-between ss-col-center"
  5. :class="[{ 'border-bottom': props.hasBorderBottom }]"
  6. >
  7. <view class="item-left" v-if="!isEmpty(props.item)">
  8. <view class="area-text ss-flex ss-col-center">
  9. <uni-tag
  10. class="ss-m-r-10"
  11. size="small"
  12. custom-style="background-color: var(--ui-BG-Main); border-color: var(--ui-BG-Main); color: #fff;"
  13. v-if="props.item.defaultStatus"
  14. text="默认"
  15. />
  16. {{ props.item.areaName }}
  17. </view>
  18. <view class="address-text">
  19. {{ props.item.detailAddress }}
  20. </view>
  21. <view class="person-text">
  22. {{ props.item.name }} {{ props.item.mobile }}
  23. </view>
  24. </view>
  25. <view v-else>
  26. <view class="address-text ss-m-b-10">请选择收货地址</view>
  27. </view>
  28. <slot>
  29. <button class="ss-reset-button edit-btn" @tap.stop="onEdit">
  30. <view class="edit-icon ss-flex ss-row-center ss-col-center">
  31. <image :src="sheep.$url.static('/static/images/edit.png')" />
  32. </view>
  33. </button>
  34. </slot>
  35. </view>
  36. </template>
  37. <script setup>
  38. /**
  39. * 基础组件 - 地址卡片
  40. *
  41. * @param {String} icon = _icon-edit - icon
  42. *
  43. * @event {Function()} click - 点击
  44. * @event {Function()} actionClick - 点击工具栏
  45. *
  46. * @slot - 默认插槽
  47. */
  48. import sheep from '@/sheep';
  49. import { isEmpty } from 'lodash';
  50. const props = defineProps({
  51. item: {
  52. type: Object,
  53. default() {},
  54. },
  55. hasBorderBottom: {
  56. type: Boolean,
  57. defult: true,
  58. },
  59. });
  60. const onEdit = () => {
  61. sheep.$router.go('/pages/user/address/edit', {
  62. id: props.item.id,
  63. });
  64. };
  65. </script>
  66. <style lang="scss" scoped>
  67. .address-item {
  68. padding: 24rpx 30rpx;
  69. .item-left {
  70. width: 600rpx;
  71. }
  72. .area-text {
  73. font-size: 26rpx;
  74. font-weight: 400;
  75. color: $dark-9;
  76. }
  77. .address-text {
  78. font-size: 32rpx;
  79. font-weight: 500;
  80. color: #333333;
  81. line-height: 48rpx;
  82. }
  83. .person-text {
  84. font-size: 28rpx;
  85. font-weight: 400;
  86. color: $dark-9;
  87. }
  88. }
  89. .edit-btn {
  90. width: 44rpx;
  91. height: 44rpx;
  92. background: $gray-f;
  93. border-radius: 50%;
  94. .edit-icon {
  95. width: 24rpx;
  96. height: 24rpx;
  97. }
  98. }
  99. image {
  100. width: 100%;
  101. height: 100%;
  102. }
  103. </style>