feat(frontend): 公共导航组件完整实现

- 组件改为render函数,避免模板编译器依赖
- 自动注入样式,无需页面额外CSS
- 自适应布局:PC固定侧边栏,H5底部导航
- 所有页面统一使用,admin权限动态控制
- 自动调整main-content边距,防止遮挡
This commit is contained in:
lt
2026-05-08 11:03:33 +08:00
parent 5587fa0bce
commit ef168e3d90
6 changed files with 63 additions and 6 deletions
+2
View File
@@ -396,6 +396,8 @@ const app = createApp({
});
app.use(ElementPlus);
// 安装导航组件
if (window.installNavigation) { window.installNavigation(app); }
app.mount('#app');
</script>
</body>