You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1.3 KiB
74 lines
1.3 KiB
1 year ago
|
<template>
|
||
|
<view class="addressList">
|
||
|
<view class="item" v-for="i in 9" :key="i">
|
||
|
<view class="a">张小艾 188****9890<text>默认</text></view>
|
||
|
<view class="b">
|
||
|
<view class="d">
|
||
|
广州市越秀区东风中路269号1109-1110
|
||
|
</view>
|
||
|
<image src="/static/order/edit.png"></image>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.addressList{
|
||
|
padding: 0 0 0 50rpx;
|
||
|
background-color: #FFFFFF;
|
||
|
overflow: hidden;
|
||
|
.item{
|
||
|
padding: 35rpx 0;
|
||
|
overflow: hidden;
|
||
|
border-bottom: 1px solid #EEEEEE;
|
||
|
.a{
|
||
|
font-size: 32rpx;
|
||
|
font-weight: 500;
|
||
|
color: #1E1E1E;
|
||
|
padding-bottom: 20rpx;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
text{
|
||
|
width: 66rpx;
|
||
|
line-height: 34rpx;
|
||
|
background: #F32020;
|
||
|
border-radius: 4rpx;
|
||
|
text-align: center;
|
||
|
display: block;
|
||
|
margin-left: 10rpx;
|
||
|
font-size: 24rpx;
|
||
|
font-weight: 400;
|
||
|
color: #FFFFFF;
|
||
|
border-radius: 5rpx;
|
||
|
}
|
||
|
}
|
||
|
.b{
|
||
|
display: flex;
|
||
|
align-items: flex-start;
|
||
|
justify-content: space-between;
|
||
|
.d{
|
||
|
font-size: 32rpx;
|
||
|
font-weight: 400;
|
||
|
color: #979797;
|
||
|
max-width: 600rpx;
|
||
|
}
|
||
|
image{
|
||
|
width: 36rpx;
|
||
|
height: 36rpx;
|
||
|
margin-right: 50rpx;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|