|
|
<template> <view class="flex-col page"> <view class="flex-col group_4"> <view class="flex-col section_2"> <view class="top-group flex-row"> <text class="text_2">收货人</text> <text class="text_3">请填写收货人姓名</text> </view> <view class="top-group flex-row"> <text class="text_4">手机号码</text> <text class="text_5">请填写收货人手机号码</text> </view> <view class="flex-col group_5"> <view class="top-group justify-between"> <view class="flex-row"> <text class="text_6">所在地区</text> <text class="text_7">请选择所在地区</text> </view> <image src="https://project-user-resource-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497893779891395.png" class="image_6" /> </view> <view class="flex-row group_7"> <text class="text_8">详细地址</text> <text class="text_9">请填写详细地址:如道路、门牌号、楼栋号、单元室等</text> </view> </view> </view> <view class="flex-col group_8"> <view class="flex-col items-center button"> <text>保存</text> </view> <view class="section_3"> </view> </view> </view> </view></template>
<script> export default { data() { return {}; }, };</script>
<style scoped lang="css"> .top-group { padding: 40rpx 0 38rpx; border-bottom: solid 2rpx rgb(239, 239, 239); } .page { background-color: #f6f6f6; width: 100%; overflow-y: auto; height: 100%; } .group_4 { padding-top: 2rpx; flex: 1 1 auto; overflow-y: auto; } .section_2 { padding: 0 32rpx; background-color: rgb(255, 255, 255); } .group_8 { margin-top: 64rpx; padding: 16rpx 32rpx; color: rgb(231, 162, 63); font-size: 32rpx; font-weight: 600; line-height: 44rpx; white-space: nowrap; } .group_5 { padding-top: 2rpx; } .button { padding: 24rpx 0; border-radius: 10rpx; border: solid 2rpx rgb(231, 162, 63); } .section_3 { margin-top: 706rpx; align-self: center; background-color: rgb(0, 0, 0); border-radius: 4rpx; width: 196rpx; height: 8rpx; } .text_2 { color: rgb(51, 51, 51); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; } .text_3 { margin-left: 72rpx; color: rgb(195, 195, 195); font-size: 32rpx; line-height: 44rpx; white-space: nowrap; } .text_4 { color: rgb(51, 51, 51); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; } .text_5 { margin-left: 40rpx; color: rgb(195, 195, 195); font-size: 32rpx; line-height: 44rpx; white-space: nowrap; } .group_7 { margin-right: 6rpx; padding: 40rpx 0; } .image_6 { width: 44rpx; height: 44rpx; } .text_8 { color: rgb(51, 51, 51); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; } .text_9 { margin-left: 40rpx; flex: 1 1 auto; color: rgb(195, 195, 195); font-size: 32rpx; line-height: 44rpx; text-align: left; } .text_6 { color: rgb(51, 51, 51); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; } .text_7 { margin-left: 40rpx; color: rgb(195, 195, 195); font-size: 32rpx; line-height: 44rpx; white-space: nowrap; }</style>
|