1.设置新增邮箱绑定和密码重置

2024.3.11 sws
master
sws 2024-03-12 11:39:11 +08:00
parent 3d34bbe4ea
commit 31fcf973df
2 changed files with 3 additions and 7 deletions

View File

@ -9,10 +9,6 @@
background: #F9F9F9;
border-radius: 50rpx;
border: 0;
}
.password .form-item ::v-deep .input-placeholder,
.password .form-item ::v-deep .uni-input-input {
padding: 0 36rpx;
font-size: 30rpx;
}

View File

@ -7,15 +7,15 @@
<form @submit="formBindPwd">
<view class="margin-top-xxxl">
<view class="pr">
<input type="text" placeholder="请输入当前密码" minlength="6" maxlength="18" name="my_pwd" :password="!eyes1" class="form-item wh-auto margin-bottom-main" />
<input type="text" placeholder="请输入当前密码" minlength="6" maxlength="18" name="my_pwd" :password="!eyes1" class="form-item margin-bottom-main" />
<view class="eyes pa" @tap="eyes1 = !eyes1"><iconfont :name="eyes1 ? 'icon-wodeqianbao-eye' : 'icon-wodeqianbao-eyeclo2'" color="#666" size="32rpx"></iconfont></view>
</view>
<view class="pr">
<input type="text" placeholder="请输入新密码" minlength="6" maxlength="18" name="new_pwd" :password="!eyes2" class="form-item wh-auto margin-bottom-main" />
<input type="text" placeholder="请输入新密码" minlength="6" maxlength="18" name="new_pwd" :password="!eyes2" class="form-item margin-bottom-main" />
<view class="eyes pa" @tap="eyes2 = !eyes2"><iconfont :name="eyes2 ? 'icon-wodeqianbao-eye' : 'icon-wodeqianbao-eyeclo2'" color="#666" size="32rpx"></iconfont></view>
</view>
<view class="pr">
<input type="text" placeholder="请确认新密码" minlength="6" maxlength="18" name="confirm_new_pwd" :password="!eyes3" class="form-item wh-auto margin-bottom-main" />
<input type="text" placeholder="请确认新密码" minlength="6" maxlength="18" name="confirm_new_pwd" :password="!eyes3" class="form-item margin-bottom-main" />
<view class="eyes pa" @tap="eyes3 = !eyes3"><iconfont :name="eyes3 ? 'icon-wodeqianbao-eye' : 'icon-wodeqianbao-eyeclo2'" color="#666" size="32rpx"></iconfont></view>
</view>
</view>