|
|
<template>
|
|
|
<div class="address-wrapper">
|
|
|
<i class="address-icon"></i>
|
|
|
<i
|
|
|
v-if="$route.params.owner === 'sell'"
|
|
|
class="address-icon back-address-icon"
|
|
|
></i>
|
|
|
<i v-else class="address-icon"></i>
|
|
|
<div>
|
|
|
<p class="consignee">{{ userAddress.consignee }}</p>
|
|
|
<p class="consignee">
|
|
|
{{
|
|
|
isSell ? `回寄地址: ${userAddress.consignee}` : userAddress.consignee
|
|
|
}}
|
|
|
</p>
|
|
|
<p class="area">{{ userAddress.area }}</p>
|
|
|
<p class="mobile">{{ userAddress.mobile }}</p>
|
|
|
</div>
|
...
|
...
|
@@ -15,7 +23,11 @@ const { mapGetters } = createNamespacedHelpers("order/orderDetail"); |
|
|
|
|
|
export default {
|
|
|
computed: {
|
|
|
...mapGetters(["userAddress"])
|
|
|
...mapGetters(["userAddress"]),
|
|
|
isSell() {
|
|
|
const { owner } = this.$route.params;
|
|
|
return owner === "sell";
|
|
|
}
|
|
|
}
|
|
|
};
|
|
|
</script>
|
...
|
...
|
@@ -46,7 +58,10 @@ export default { |
|
|
display: block;
|
|
|
background-size: contain;
|
|
|
margin-right: 40px;
|
|
|
background-image: url("~statics/image/order/addr-icon@3x.png");
|
|
|
}
|
|
|
|
|
|
.back-address-icon {
|
|
|
background-image: url("~statics/image/order/blackAddress@3x.png");
|
|
|
}
|
|
|
}
|
|
|
</style> |
|
|
\ No newline at end of file |
...
|
...
|
|