jiangchengfeiyi-xiaochengxu/pages/order/address/address.vue
2024-10-18 22:49:08 +08:00

138 lines
3.3 KiB
Vue

<template>
<view class="flex-col page">
<view class="flex-col">
<view class="flex-row justify-center items-center relative group">
<text class="text">收货地址</text>
<image
class="image pos"
src="https://ide.code.fun/api/image?token=6711ccc71511d900114adddf&name=4bb5072c88795ed4234ff0c7f7a35a23.png"
/>
</view>
<view class="mt-16 flex-col">
<view class="flex-col list-item" v-for="(item, index) in items" :key="index">
<view class="flex-row justify-between items-center self-stretch">
<view class="flex-row items-center">
<image
class="shrink-0 image_2"
src="https://ide.code.fun/api/image?token=6711ccc71511d900114adddf&name=77acc0c7f94beb4408728eee129ffe97.png"
/>
<text class="font ml-9">张三</text>
<text class="font_2 ml-9">15888610253</text>
</view>
<view class="flex-row group_2">
<image
class="image_3"
src="https://ide.code.fun/api/image?token=6711ccc71511d900114adddf&name=dea6c36cff62ddc7551d1917f90fb560.png"
/>
<image
class="ml-12 image_3"
src="https://ide.code.fun/api/image?token=6711ccc71511d900114adddf&name=7708438dfd87635576ea9abfcc6d7897.png"
/>
</view>
</view>
<text class="mt-12 self-center font_3 text_2">黑龙江省哈尔滨市呼兰区 学院路街道288号哈尔华德学院</text>
</view>
</view>
</view>
<view class="flex-col justify-start items-center section mt-276">
<view class="flex-col justify-start items-center text-wrapper"><text class="text_3">添加新地址</text></view>
</view>
</view>
</template>
<script setup>
</script>
<style lang="scss" scoped>
.ml-9 {
margin-left: 16.88rpx;
}
.mt-276 {
margin-top: 517.5rpx;
}
.page {
padding-top: 18.75rpx;
background-color: #fffaf0;
border-radius: 28.13rpx 28.13rpx 0rpx 0rpx;
width: 100%;
overflow-y: auto;
overflow-x: hidden;
height: 100%;
}
.group {
padding: 11.25rpx 24.38rpx 7.5rpx;
}
.text {
color: #323232;
font-size: 37.5rpx;
font-family: Open Sans;
line-height: 34.76rpx;
}
.image {
width: 52.5rpx;
height: 52.5rpx;
}
.pos {
position: absolute;
right: 24.38rpx;
top: 50%;
transform: translateY(-50%);
}
.list-item {
padding: 26.25rpx 18.75rpx;
background-color: #fffef8;
border-bottom: solid 1.88rpx #c8c8c8;
}
.image_2 {
width: 33.75rpx;
height: 33.75rpx;
}
.group_2 {
margin-right: 11.25rpx;
}
.image_3 {
width: 39.38rpx;
height: 39.38rpx;
}
.font_3 {
font-size: 26.25rpx;
font-family: Open Sans;
line-height: 31.88rpx;
color: #818181;
}
.text_2 {
width: 601.88rpx;
}
.font_2 {
font-size: 30rpx;
font-family: Open Sans;
line-height: 22.05rpx;
color: #323232;
}
.font {
font-size: 30rpx;
font-family: Open Sans;
line-height: 27.19rpx;
color: #323232;
}
.section {
padding: 22.5rpx 0 15rpx;
background-color: #ffffff;
}
.text-wrapper {
padding: 30rpx 0;
background-color: #fbb612;
border-radius: 75rpx;
width: 639.38rpx;
}
.text_3 {
color: #ffffff;
font-size: 33.75rpx;
font-family: Open Sans;
line-height: 31.22rpx;
}
@import url(../../../common/css/global.css);
</style>