1.当input聚焦时布局未上移
TypeScript
<scroll-view style="height: calc(100vh - 100rpx - 38rpx)" :scroll-y="true">
<wd-form ref="formRef" :model="fbObj">
....
<wd-input
label="联系方式"
prop="contact"
clearable
v-model="fbObj.contact"
placeholder="请输入手机号,便于我们与您联系"
align-right
:rules="[
{ required: true, message: '请输入手机号' },
{
pattern: /^1[3456789]\d{9}$/,
message: '请输入正确的手机号',
required: true,
},
]"
/>
</wd-cell-group>
</wd-form>
</scroll-view>
<wishBtn btnClass="wish-btn-x" text="提交审核" @click="handleSubmit" />
如上面 使用<scroll-view :scroll-y="true"> 包围着代码部分即可解决问题
后续会一个一个的添加