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.
119 lines
2.3 KiB
119 lines
2.3 KiB
<template>
|
|
<view class="phone">
|
|
<view class="content">
|
|
<view class="item">
|
|
<view class="a">新密码</view>
|
|
<view class="b">
|
|
<input type="password" placeholder="请输入验证码" />
|
|
</view>
|
|
</view>
|
|
<view class="item">
|
|
<view class="a">确认密码</view>
|
|
<view class="b">
|
|
<input type="password" placeholder="请输入验证码" />
|
|
</view>
|
|
</view>
|
|
<view class="item">
|
|
<view class="a">手机号</view>
|
|
<view class="b">
|
|
<view class="txt">188****0809</view>
|
|
</view>
|
|
</view>
|
|
<view class="item">
|
|
<view class="a">短信验证码</view>
|
|
<view class="b">
|
|
<input type="number" placeholder="请输入验证码" />
|
|
<view class="code">获取验证码</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="btn">确定</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.phone{
|
|
padding: 25rpx;
|
|
overflow: hidden;
|
|
.btn{
|
|
width: 100%;
|
|
line-height: 90rpx;
|
|
background: #00C6A9;
|
|
box-shadow: 0px 3rpx 10rpx 0px rgba(9,44,39,0.05);
|
|
border-radius: 90rpx;
|
|
text-align: center;
|
|
font-weight: 500;
|
|
font-size: 30rpx;
|
|
color: #FFFFFF;
|
|
margin: 0 auto;
|
|
margin-top: 320rpx;
|
|
}
|
|
.content{
|
|
width: 100%;
|
|
min-height: 224rpx;
|
|
background: #FFFFFF;
|
|
box-shadow: 0px 3rpx 10rpx 0px rgba(9,44,39,0.05);
|
|
border-radius: 20rpx;
|
|
padding: 0 30rpx;
|
|
box-sizing: border-box;
|
|
.item{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
border-top: 1px solid #EAEAEA;
|
|
padding: 35rpx 0;
|
|
overflow: hidden;
|
|
position: relative;
|
|
&:first-child{
|
|
border-color: #FFFFFF;
|
|
}
|
|
.a{
|
|
width: 160rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
font-weight: 500;
|
|
font-size: 30rpx;
|
|
color: #222222;
|
|
}
|
|
.b{
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
font-weight: 500;
|
|
font-size: 30rpx;
|
|
color: #999999;
|
|
.txt{
|
|
flex: 1;
|
|
text-align: right;
|
|
}
|
|
input{
|
|
text-align: right;
|
|
flex: 1;
|
|
font-weight: 500;
|
|
font-size: 30rpx;
|
|
color: #333333;
|
|
margin-right: 30rpx;
|
|
}
|
|
.code{
|
|
font-weight: 500;
|
|
font-size: 30rpx;
|
|
color: #00C6A9;
|
|
margin-right: 20rpx;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
</style>
|
|
|