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
+3 -1
View File
@@ -225,7 +225,9 @@
};
const app = Vue.createApp(UsersApp);
app.use(ElementPlus);
app.mount('#app');
// 安装导航组件
if (window.installNavigation) { window.installNavigation(app); }
app.mount('#app');
</script>
</body>
</html>