2025-01-15 18:49:37 +08:00

47 lines
850 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="receive_goods">
<div>收货信息</div>
<div class="address_info">
<div class="link_info">六点 <span>13254631102</span></div>
<div>浙江省杭州市公安局指挥中心大楼杭州市上城区婺江路169号</div>
</div>
</div>
</template>
<script>
export default {
props: {
obj: {}
},
data() {
return {}
}
}
</script>
<style lang="stylus" scoped>
.receive_goods {
margin: -70rpx auto 24rpx;
width: 638rpx;
padding: 24rpx 24rpx;
background: #FEFFFE;
border-radius: 16rpx;
position: relative;
z-index: 2;
.title {
color: #020E1A;
font-size: 28rpx;
margin-bottom: 16rpx;
}
.address_info {
color: #6C737A;
line-height: 40rpx;
font-size: 28rpx;
.link_info {
span {
margin-left: 16rpx;
}
}
}
}
</style>