Browse Source

注册密码自动填充问题

zhangxc 6 years ago
parent
commit
5f82d7b4f6
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/components/register/Register.vue

+ 1 - 0
src/components/register/Register.vue

@@ -26,6 +26,7 @@
 							<input type="tel" :class="[{ 'error': phoneErrText}]" name="" v-model="phone" maxlength="11" @input="handleTelInput"
                                @blur="checkPhone" placeholder="请输入手机号">
 							<span class="tips" v-show="phoneErrText">{{phoneErrText}}</span>
+              <input type="password" style="display: none"/>
 						</div>
               <div class="phoneBox">
                 <input type="password" :class="[{ 'error': pswErrText}]" name="" v-model="psw" minlength="6" maxlength="16" readonly onfocus="this.removeAttribute('readonly')" @blur="checkPsw" placeholder="请输入密码">