refactor(接口自动化): 修改页面布局和FAB按钮位置
This commit is contained in:
parent
0b68685e0d
commit
611b1e3c97
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,31 @@
|
||||||
|
const OutsideClick = {
|
||||||
|
// 初始化指令
|
||||||
|
bind(el, binding, vnode) {
|
||||||
|
function documentHandler(e) {
|
||||||
|
// 这里判断点击的元素是否是本身,是本身,则返回
|
||||||
|
if (el.contains(e.target)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// 判断指令中是否绑定了函数
|
||||||
|
if (binding.expression) {
|
||||||
|
// 如果绑定了函数 则调用那个函数,此处binding.value就是handleClose方法
|
||||||
|
binding.value(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 给当前元素绑定个私有变量,方便在unbind中可以解除事件监听
|
||||||
|
el.__vueClickOutside__ = documentHandler;
|
||||||
|
document.addEventListener('click', documentHandler);
|
||||||
|
},
|
||||||
|
update() {
|
||||||
|
},
|
||||||
|
unbind(el, binding) {
|
||||||
|
// 解除事件监听
|
||||||
|
document.removeEventListener('click', el.__vueClickOutside__);
|
||||||
|
delete el.__vueClickOutside__;
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default OutsideClick;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue