修复:解决抽屉组件弹出时,mask不能全屏覆盖问题;

master
iczer 4 years ago
parent a5f486a03d
commit 6ef4680adb
  1. 6
      src/components/tool/Drawer.vue

@ -72,8 +72,10 @@ export default {
<style lang="less" scoped> <style lang="less" scoped>
.mask{ .mask{
position: fixed; position: fixed;
width: 100%; left: 0;
height: 100%; right: 0;
bottom: 0;
top: 0;
background-color: rgba(0, 0, 0, 0.2); background-color: rgba(0, 0, 0, 0.2);
transition: all 0.5s; transition: all 0.5s;
z-index: 100; z-index: 100;

Loading…
Cancel
Save