Blame view

apps/pages/order/order-detail/components/address-info.vue 1.32 KB
lea guo authored
1 2
<template>
  <div class="address-wrapper">
lea guo authored
3 4 5 6 7
    <i
      v-if="$route.params.owner === 'sell'"
      class="address-icon back-address-icon"
    ></i>
    <i v-else class="address-icon"></i>
lea guo authored
8
    <div>
lea guo authored
9 10 11 12 13
      <p class="consignee">
        {{
          isSell ? `回寄地址: ${userAddress.consignee}` : userAddress.consignee
        }}
      </p>
lea guo authored
14 15 16 17 18 19 20 21 22 23 24 25
      <p class="area">{{ userAddress.area }}</p>
      <p class="mobile">{{ userAddress.mobile }}</p>
    </div>
  </div>
</template>

<script>
import { createNamespacedHelpers } from "vuex";
const { mapGetters } = createNamespacedHelpers("order/orderDetail");

export default {
  computed: {
lea guo authored
26 27 28 29 30
    ...mapGetters(["userAddress"]),
    isSell() {
      const { owner } = this.$route.params;
      return owner === "sell";
    }
lea guo authored
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
  }
};
</script>

<style lang="scss" scoped>
.address-wrapper {
  display: flex;
  align-items: center;

  .consignee {
    font-size: 32px;
    font-weight: bold;
  }

  .area {
    color: #999;
    margin: 12px 0;
  }

  .mobile {
    font: 28px;
lea guo authored
52
    font-weight: bold;
lea guo authored
53 54 55 56 57 58 59 60
  }

  .address-icon {
    width: 48px;
    height: 48px;
    display: block;
    background-size: contain;
    margin-right: 40px;
lea guo authored
61
    background-image: url("~statics/image/order/addr-icon@3x.png");
lea guo authored
62 63 64 65
  }

  .back-address-icon {
    background-image: url("~statics/image/order/blackAddress@3x.png");
lea guo authored
66 67 68
  }
}
</style>