要写一个提示框,有灰度,放到正常页面最外层。发现上下滑动,里层的页面也会跟着上下动,其实只需要再设置一下page
的属性就行了。
<style lang="less" scoped>.verify-mask {z-index: 99999;position: fixed;top: 0px;left: 0px;height: 100%;width: 100%;background: black;opacity: 0.4;overflow: hidden;}
</style><style lang="less">page {height: 100%;overflow-y: hidden;}
</style>