解决虚拟键盘弹起兑换按钮遮盖输入框

This commit is contained in:
red-deng-deng 2022-01-24 13:47:35 +08:00
parent ee2009702c
commit 04457a59cd
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@
</div> </div>
<div class="ipt-acc"> <div class="ipt-acc" style="position: relative;z-index: 999;">
<p v-if="acctype=='tel'"><span>账号:</span><input :type="acctype" <p v-if="acctype=='tel'"><span>账号:</span><input :type="acctype"
onkeyup="this.value=this.value.replace(/\D/g,'')" onkeyup="this.value=this.value.replace(/\D/g,'')"
onKeypress="return(/[\d]/.test(String.fromCharCode(event.keyCode)))" :maxlength="maxlen" v-model="account" onKeypress="return(/[\d]/.test(String.fromCharCode(event.keyCode)))" :maxlength="maxlen" v-model="account"