项目信息管理详情优化

yfy
项洋 7 days ago
parent f8b2ec3593
commit 5b5a72f378

@ -36,6 +36,9 @@
mode="horizontal" mode="horizontal"
@select="scrollToSection" @select="scrollToSection"
class="custom-menu" class="custom-menu"
ref="menuRef"
@click="handleMenuClick"
@mousedown.native.prevent
> >
<el-menu-item <el-menu-item
v-for="(item, index) in sections" v-for="(item, index) in sections"
@ -493,6 +496,11 @@ export default {
} }
} }
}, },
handleMenuClick() {
if (this.$refs.menuRef) {
this.$refs.menuRef.$el.blur();
}
},
}, },
}; };
</script> </script>

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save