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.
79 lines
1.6 KiB
79 lines
1.6 KiB
<template>
|
|
<page-meta :page-style="themeColor"></page-meta>
|
|
<div class="view">
|
|
<div class="content">
|
|
<u-input placeholder="请输入手机号">
|
|
<div class="suffix" slot="suffix" >
|
|
获取验证码
|
|
</div>
|
|
</u-input>
|
|
<u-input placeholder="请输入验证码"></u-input>
|
|
<u-input placeholder="请输入新密码"></u-input>
|
|
<u-input placeholder="请输入新密码"></u-input>
|
|
|
|
<div class="btn">
|
|
确认修改
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.view {
|
|
min-height: 100vh;
|
|
background-color: white;
|
|
.tips {
|
|
padding: 24rpx 30rpx;
|
|
background: rgba(33,187,243,0.08);
|
|
|
|
font-size: 24rpx;
|
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
font-weight: 400;
|
|
color: $base-color;
|
|
|
|
line-height: 40rpx;
|
|
}
|
|
.content {
|
|
padding: 40rpx;
|
|
::v-deep {
|
|
.u-input--radius {
|
|
height: 92rpx;
|
|
background: #F6F6F6;
|
|
border-radius: 16rpx;
|
|
border: 0;
|
|
margin-bottom: 30rpx;
|
|
}
|
|
.uni-input-placeholder {
|
|
margin-left: 38rpx;
|
|
}
|
|
}
|
|
.suffix {
|
|
width: 140rpx;
|
|
height: 40rpx;
|
|
font-size: 28rpx;
|
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
color: $base-color;
|
|
line-height: 40rpx;
|
|
margin-right: 24rpx;
|
|
}
|
|
.btn {
|
|
margin-top: 80rpx;
|
|
height: 80rpx;
|
|
background: $base-color;
|
|
border-radius: 50rpx;
|
|
|
|
font-size: 28rpx;
|
|
font-family: PingFangSC-Medium, PingFang SC;
|
|
font-weight: 600;
|
|
color: #FFFFFF;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
}
|
|
}
|
|
</style>
|