12 2020 档案
摘要:https://blog.csdn.net/qq_39390545/article/details/105550949
阅读全文
摘要:this.$bus.on 不会自动关闭, 所以我们在使用的时候, 最好先关闭,再进行监听 也可以在卸载的生命周期里off Vue.prototype.addObserve = function (key, fallback) { this.$bus.off(key); this.$bus.on(ke
阅读全文
摘要:// 超出部分隐藏了滚动条 //当显示dialog的时候 body 默认多出了一个 paading-right body{padding-right:0px!important} .el-popup-parent--hidden { overflow: initial !important; }
阅读全文
摘要:vue 手机键盘把底部按钮顶上去 vue.jsjavascript 发布于 2018-04-08 背景:在写提交订单页面时候,底部按钮当我点击输入留言信息的时候,底部提交订单按钮被输入法软键盘顶上去遮挡住了。 实现原理:当页面高度发生变化的时候改变底部button的样式,没点击前button在底部固
阅读全文
摘要:// 设置 rem 函数 function setRem() { // 750 设计图 const htmlWidth = document.documentElement.clientWidth || document.body.clientWidth // 得到html的Dom元素 const
阅读全文
摘要:data() { return { docmHeight: document.documentElement.clientHeight, showHeight: document.documentElement.clientHeight, hideClass: false, } }, methods
阅读全文