47 lines
850 B
Vue
47 lines
850 B
Vue
<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> |