feat(web): 初始化主页面和监控页面

- 新增 MainView 组件,包含 header、menu 和 page 区域
- 新增 monitor 子页面组件
- 更新路由配置,添加主页面和监控页面路由
- 新增全局样式文件,统一颜色和样式
- 优化 App.vue 样式,移除最小宽高限制
This commit is contained in:
zhoumengru
2025-08-29 15:48:33 +08:00
parent 7aad6b6598
commit 4af4e670d2
10 changed files with 146 additions and 16 deletions

14
web/src/style/antd.scss Normal file
View File

@@ -0,0 +1,14 @@
$border-color:#12FBFF;
//级联器样式
.ant-cascader{
.ant-select-selector{
background: none !important;
border: 1px solid $border-color !important;
}
.ant-select-arrow{
color: $border-color;
}
}