addAddress.vue 2.4 KB
<template>
	<view class="page">
		<view class="box">
			<view class="item">
				<view class="left">姓名</view>
				<view class="right">
					<input type="text" value=""  placeholder="请输入姓名"/>
					<image src="../../static/right.png" mode="widthFix" />
				</view>
			</view>
			<view class="item">
				<view class="left">联系方式</view>
				<view class="right">
					<input type="text" value=""  placeholder="请输入手机号码" />
					<image src="../../static/right.png" mode="widthFix" />
				</view>
			</view>
			<view class="item">
				<view class="left">地区</view>
				<view class="right">
					<input type="text" value=""  placeholder="请选择所在地区"/>
					<image src="../../static/right.png" mode="widthFix" />
				</view>
			</view>
			<view class="item">
				<view class="left">详细地址</view>
				<view class="right">
					<input type="text" value=""  placeholder="详细地址须填写楼栋楼层或房间号信息"/>
					<image src="../../static/right.png" mode="widthFix" />
				</view>
			</view>
			

			
		</view>
		<view class="btn">确认</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {

			}
		},
		methods: {

		}
	}
</script>

<style>
	page {
		background: #F7F7F7;

	}

	.box {
		padding: 0 32rpx;
		box-sizing: border-box;
		background: #fff;
	}

	.item {
		height: 108rpx;
		display: flex;
		justify-content: space-between;
		align-items: center;
		border-bottom: 1px solid #EDEDED;

	}

	.left {
		width: calc(100% -220rpx);
		display: flex;
		align-items: center;
		font-size: 28rpx;
		font-family: PingFangHK-Regular, PingFangHK;
		font-weight: 400;
		color: rgba(8, 18, 31, 1);
	}

	.right {
		width: 550rpx;
		font-size: 28rpx;
		font-family: PingFangHK-Regular, PingFangHK;
		font-weight: 400;
		color: rgba(61, 69, 76, 1);
		display: flex;
		align-items: center;
		justify-content: flex-end;
		text-align: right;
	}

	.right image {
		width: 32rpx;
		margin-left: 16rpx;
	}
	.right input{
		max-width: 476rpx;
		font-size:28rpx;
		font-family:PingFangHK-Regular,PingFangHK;
		font-weight:400;
		color:rgba(61,69,76,1);
	}

	.btn {
		width: 686rpx;
		height: 84rpx;
		background: rgba(194, 148, 69, 1);
		border-radius: 8rpx;
		font-size: 32rpx;
		font-family: PingFangSC-Medium, PingFang SC;
		font-weight: 500;
		color: rgba(255, 255, 255, 1);
		display: flex;
		justify-content: center;
		align-items: center;
		/* margin: 100rpx auto; */
		position:fixed;
		bottom:30rpx;
		left:32rpx;
	}
</style>