123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <template>
- <view>
- <u-navbar title="找回密码" title-color="#101010"></u-navbar>
- <view class="main">
- <view class="original-password">
- <text>手机号码</text><u-input v-model="password" style="padding: 0 0 0 20px" maxlength="11" type="number" placeholder="请填写手机号" />
- </view>
- <view class="new-password">
- <text>验证码</text><u-input v-model="password" style="padding: 0 0 0 20px" maxlength="6" type="number" placeholder="6位验证码" /><text class="verification-code">获取验证码</text>
- </view>
- <view class="new-password">
- <text>新密码</text><u-input v-model="password" style="padding: 0 0 0 20px" class="password-input" type="password" placeholder="创建6-16位组合新密码" :password-icon="true" />
- </view>
- </view>
- <!-- 确认修改 -->
- <button class="confirm">提交</button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .main{
- background-color: #fff;
- margin-top: 24rpx;
- .original-password,.new-password{
- line-height: 96rpx;
- padding:0 32rpx;
- display: flex;
- align-items: center;
- border-bottom: 1px solid rgba(221,221,221,1);
- /deep/.u-input__input{
- height: 96rpx;
- }
-
- }
- text{
- display: inline-block;
- width: 128rpx;
- color: rgba(51,51,51,1);
- font-size: 32rpx;
- }
- .verification-code{
- width: 160rpx;
- color: rgba(22,119,255,1);
- font-size: 32rpx;
- }
- }
- // 确认修改
- .confirm{
- border-radius: 8px;
- background-color: rgba(22,119,255,1);
- color: rgba(255,255,255,1);
- font-size: 32rpx;
- line-height: 88rpx;
- margin: 24rpx 32rpx;
- }
- </style>
|