<template>
<!-- 遮罩层,避免input框聚焦时,弹起的键盘导致搜索框错位 -->
<view class="maskBox" @touchmove.stop.prevent="moveHandle" v-show="inputting">
</template>
<script>
...
// 阻止滚动
moveHandle(){
return
},
....
</script>
<style>
.maskBox{
position: fixed;
top:0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.6);
z-index: 666;
overflow: hidden;
}
</style>